如何向页面添加java script脚本代码?
发布网友
发布时间:2022-04-21 01:50
我来回答
共4个回答
热心网友
时间:2022-04-21 03:20
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title></title>
<script type='text/javascript' src='somecode.js'></script>
<script type='text/javascript' language='javascript'>
<!--
somecode
//-->
</head>
</script>
<body>
<script type='text/javascript' language='javascript'>
<!--
somecode
//-->
</script>
<img src='' onclick='somecode'/>
</body>
</html>
热心网友
时间:2022-04-21 04:38
<script language="javascript">
</script>这是一种,在页面中直接写JS脚本
<script src="yourJS.js" language="javascript"></script>这是在你的JSP页面,引入JS
热心网友
时间:2022-04-21 06:12
javascript代码可以添加在页面的任何区域 可以是body 区,也可以是head区 ,也可以是其他区域。
如果是纯粹的函数 写哪里根本没有关系。但是如果不是单纯的函数 还有其他非函数语句 这就要主要它的位置了 因为浏览器是按顺序执行的。很可能找不到对象
热心网友
时间:2022-04-21 08:04
....
<head>
<script language="javascript">
function test(){
alert("test");
....
}
</script>
</head>
....