通过执行这个菜单操作,可以使HTML的源代码格式更加有层次感,更加清晰易读。
第1种 是把代码写在dw中的<head>
<script language="javascript" type="text/javascript" >
这里加代码
</script>
</head>
第二种是 直接调用js文件的
<head>
<script src="Scripts/AC_RunActiveContent1.js" type="text/javascript"></script>这里加代码
</script>
</head>
两种方式:
第一种:在html页面中内嵌javascript代码,在<script>标签中编写javascript代码
<!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=utf-8" />
<title>无标题文档</title>
<script type="text/javascript">
alert("执行的是javascript代码")
</script>
</head>
<body>
</body>
</html>
第二种:javascript代码写在单独的js文件中,html页面中引用;
示例:
js文件
// JavaScript Documentalert("执行的是javascript代码")
html文件
<!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=utf-8" />
<title>无标题文档</title>
<script type="text/javascript" src="js.js">
</head>
<body>
</body>
</html>