dw中腳本
在任何IDE和編輯器中都可以編寫JS前端程序,而我們只需要注意注意JS語言的規范就行了。
目前在HTML文件中,運性JS有兩種方式,一種是內嵌代碼;另一種是編寫單獨的JS文件,然後引用。
第一種:內嵌代碼
就是在<scripttype="text/javascript"></script>中直接編寫代碼,例如:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>首頁/title>
<scripttype="text/javascript">
alert("我是運性結果");
</script>
</head>
<body>
</body>
</html>
第二種:外部引用
在<script>標簽上添加一個src屬性指向文件地址。
例如我們在user.js文件中寫上:
alert("我是運性結果");
然後在HTML中引用:
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>首頁</title>
<scripttype="text/javascript"src="user.js">
</head>
<body>
</body>
</html>
上面兩種的運性結果一樣,都是在瀏覽器中彈出一個提示框
⑵ dw中關閉窗口的腳本鏈接是
dw中關閉窗口的腳本鏈接是 :< a href=「/」onclick=「javascript:window.close(); return false;」>關閉窗口< /a>
⑶ DW中怎麼編寫JavaScript腳本語言啊
兩種方式:
第一種:在html頁面中內嵌javascript代碼,在<script>標簽中編寫javascript代碼
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<htmlxmlns="http://www.w3.org/1999/xhtml">
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>無標題文檔</title>
<scripttype="text/javascript"src="js.js">
</head>
<body>
</body>
</html>
⑷ Dreamweaver CS5常用腳本鏈接代碼有
Dreamweaver CS5常用腳本鏈接代碼有javascript:window.external.addFavorite();javascript:window.close() ;javascript:alert()。
⑸ 我用DW製作了一個純靜態網頁,如何在其中加入腳本。
你是在本地測試時有提示的吧
把文件上傳到你的空間,就沒有提示了。
或者在你機子上裝一個測試伺服器
做網頁在本地測試後上傳
如IIS
⑹ 在dreamweaver中如何實現腳本鏈接比如關閉窗口的腳本鏈接:javascript:wind
<aonclick="javascript:window.opener=null;window.close"href="javascript:void(0)">點我關閉</a>
⑺ DW怎麼引入css ,jQuery 腳本庫以及.js文件
首先找到你這個網站的目錄,吧你說的文件拷到該目錄下,
然後
<link href="樣式表" rel="stylesheet" type="text/css">
<SCRIPT type=text/javascript src="js文件"></SCRIPT>
注意路徑,如果你的網頁和這些文件同級目錄就直接寫文件名,代碼放在head里
復制代碼到網頁里