Dreamweaver怎么格式化代码,DW代码怎么排版

JavaScript026

Dreamweaver怎么格式化代码,DW代码怎么排版,第1张

在文档窗口中依次选择“Commands”(命令集)菜单-“Apply Source Formatting(应用源代码格式化)。

通过执行这个菜单操作,可以使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 Document

alert("执行的是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>