我在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>
以上段落由脚本更改。
什么都没有显示..为什么以及如何展示这个?
答案 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";
}