怎样在网页中插入JavaScript代码
3个回答
2016-10-25
展开全部
有两种方法,
①:直接在html页面写,如:
<html>
<head></head>
<body>
<script>
window.onload = function(){
alert("Hello World!");
}
</script>
</body>
</html>
②:写在外部的后缀名为.js的文件里面,然后在Html文件里面引入,如代码写在index.js文件里面,路径和html文件在同一目录下。可以这么引入:
<html>
<head></head>
<body>
<script src="index.js"></script>
</body>
</html>
PS:在html里面直接写js代码时,一定要写在<script></script>标签里面。
展开全部
页内插入:
<script >
js代码;
</script>
页外引用:
<script src="js文件路径">
</script>
<script >
js代码;
</script>
页外引用:
<script src="js文件路径">
</script>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
<body>
....
</body>
<script>
alert("hello world!")
</script>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询