我想知道为啥我下面这段代码不执行script语言 <html> <head> <script language="javascript"> al
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我想知道为啥我下面这段代码不执行script语言 <html> <head> <script language="javascript"> al相关的知识,希望对你有一定的参考价值。
参考技术A 第一,你的alert没有放在<script></script>标签对之间,你写的那条只是定义使用javascript语言。第二,javascript的加载时根据顺序流来加载的,如果你放在头部必须是要加上window.onload,即:
<script>
window.onload=function ()
alert("a");
</script> 参考技术B 因为你是把js代码放在head之间的,head之间的js代码,是不会自动执行的,需要有事件触发 参考技术C 要带上关闭标签 <script language="javascript">alert("aaa");</script> 参考技术D <!DOCTYPE html>
<html>
<head>
<title> New Document </title>
<script language="javascript">
alert('adas');
</script>
<script type="text/javascript">
alert('adas2');
</script>
</head>
<body>
</body>
</html>
你试试
以上是关于我想知道为啥我下面这段代码不执行script语言 <html> <head> <script language="javascript"> al的主要内容,如果未能解决你的问题,请参考以下文章
js问题,动态增加select里的option,求问为啥这段代码不执行?求大神指教!
为啥不执行 audioPlayerDidFinishPlaying