在html文档中使用javascript脚本有哪3种方法
1个回答
展开全部
最常见是这种:
在任何地方,用<script type="text/javascript">开头,及</script>结束
javascript 指令写在其中。
<html>
<body>
<script type="text/javascript">
alert("hi")
</script>
网页内容
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~~
其次是简单的一个,或两三个指令直接写在物件标签内。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="alert('你好!'); alert('欢迎你来!')">
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~
较少见是这种,一连串指令写在物件标签内。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="
var d = new Date()
d= '日一二三四五六'.charAt(d.getDay())
alert( '今天是星期' + d)
">
Hi
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~
你将以上三种存成独立的 x.htm 文件,用ie或firefox试试,后二种用mouseover 就会触发 javascript 程式。
在任何地方,用<script type="text/javascript">开头,及</script>结束
javascript 指令写在其中。
<html>
<body>
<script type="text/javascript">
alert("hi")
</script>
网页内容
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~~
其次是简单的一个,或两三个指令直接写在物件标签内。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="alert('你好!'); alert('欢迎你来!')">
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~
较少见是这种,一连串指令写在物件标签内。
<html>
<body>
<div style="background-color:cyan; width:500px; height:200px;" onmouseover="
var d = new Date()
d= '日一二三四五六'.charAt(d.getDay())
alert( '今天是星期' + d)
">
Hi
</div>
</body>
</html>
~~~~~~~~~~~~~~~~~~
你将以上三种存成独立的 x.htm 文件,用ie或firefox试试,后二种用mouseover 就会触发 javascript 程式。
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询