警报正在运行,但Dreamweaver中没有其他代码

时间:2013-09-30 07:22:37

标签: javascript jquery html dreamweaver

我在Dreamweaver中有一个image.html文件。

源代码中的

我链接了一个名为img.js的

的js文件
<!doctype html>
<html>
    <head>
        <meta charset="UTF-8" />
        <title>PHOTO</title>
        <script language="javascript" type="text/javascript" src="js/img.js"></script>
        </body>
</html>

如果在img.js中使用警报

alert("My First Jquery Test");

它在网页中正确显示但是如果写了一些像

这样的javascript代码
<html>
<body>

<p id="p2">Hello World!</p>

<script>
document.getElementById("p2").style.color="blue";
</script>

以上段落由脚本更改。

 

什么都没有显示..为什么以及如何展示这个?

2 个答案:

答案 0 :(得分:0)

脚本正常工作,您可以看到here。 如果仍有问题,请报告完整的HTML文件。

记住:

<html>
   <head></head>
   <body>
      <p id="p2">Hello World!</p>

      <script>
         document.getElementById("p2").style.color="blue";
      </script>
   </body>
</html>

答案 1 :(得分:0)

做得对

编辑img.js

window.onload=function(){
    alert("My First Jquery Test");
   document.getElementById("p2").style.color="blue";
}