發(fā)文章
發(fā)文工具
撰寫
網(wǎng)文摘手
文檔
視頻
思維導(dǎo)圖
隨筆
相冊
原創(chuàng)同步助手
其他工具
圖片轉(zhuǎn)文字
文件清理
AI助手
留言交流
17 定義函數(shù)1: <script language=”JavaScript”>2: <!--3: function multiple(number1,number2) {4: var result = number1 * number2;5: return result;6: }7: // -->8: </script> 18 調(diào)用JS函數(shù)1: <a href=”#” onClick=”functionName()”>Link text</a>2: <a href="/”javascript:functionName"()”>Link text</a> 19 在頁面加載完成后執(zhí)行函數(shù)1: <body onLoad=”functionName();”>2: Body of the page3: </body>20 條件判斷1: <script>2: <!--3: var userChoice = window.confirm(“Choose OK or Cancel”);4: var result = (userChoice == true) ? “OK” : “Cancel”;5: document.write(result);6: // -->7: </script> 21 指定次數(shù)循環(huán)1: <script>2: <!--3: var myArray = new Array(3);4: myArray[0] = “Item 0”;5: myArray[1] = “Item 1”;6: myArray[2] = “Item 2”;7: for (i = 0; i < myArray.length; i++) {8: document.write(myArray + “<br>”);9: }10: // -->11: </script> 22 設(shè)定將來執(zhí)行1: <script>2: <!--3: function hello() {4: window.alert(“Hello”);5: }6: window.setTimeout(“hello()”,5000);7: // -->8: </script> 23 定時(shí)執(zhí)行函數(shù)1: <script>2: <!--3: function hello() {4: window.alert(“Hello”);5: window.setTimeout(“hello()”,5000);6: }7: window.setTimeout(“hello()”,5000);8: // -->9: </script> 24 取消定時(shí)執(zhí)行1: <script>2: <!--3: function hello() {4: window.alert(“Hello”);5: }6: var myTimeout = window.setTimeout(“hello()”,5000);7: window.clearTimeout(myTimeout);8: // -->9: </script>
25 在頁面卸載時(shí)候執(zhí)行函數(shù)1: <body onUnload=”functionName();”>2: Body of the page3: </body>JavaScript就這么回事2:瀏覽器輸出26 訪問document對象1: <script language=”JavaScript”>2: var myURL = document.URL;3: window.alert(myURL);4: </script> 27 動態(tài)輸出HTML1: <script language=”JavaScript”>2: document.write(“<p>Here’s some information about this document:</p>”);3: document.write(“<ul>”);4: document.write(“<li>Referring Document: “ + document.referrer + “</li>”);5: document.write(“<li>Domain: “ + document.domain + “</li>”);6: document.write(“<li>URL: “ + document.URL + “</li>”);7: document.write(“</ul>”);8: </script>28 輸出換行1: document.writeln(“<strong>a</strong>”);2: document.writeln(“b”);
來自: WindySky > 《技巧總結(jié)》
0條評論
發(fā)表
請遵守用戶 評論公約
JavaScript就這么回事 邪惡八進(jìn)制信息安全團(tuán)隊(duì)官方學(xué)術(shù)討論組
1: <form name="myForm"> 2: <select name="mySelect"> 3: <option value="First Choice">1</option> 4: <option value="Second Choic...
JavaScript|數(shù)組對象
JavaScript|數(shù)組對象。講到數(shù)組會有人問,,什么是數(shù)組,?數(shù)組就是有序數(shù)據(jù)的集合,在JavaScript中的數(shù)組元素允許屬于不同的數(shù)據(jù)類型,,用數(shù)組名和下標(biāo)就可以唯一地確定數(shù)組中的元素,。數(shù)組中的變量稱為數(shù)組...
分享數(shù)組概念、創(chuàng)建,、賦值,、長度與使用
7 document.write("數(shù)組第一個(gè)值是:"+myarray[0]+"<br>"); 8 document.write("數(shù)組第二個(gè)值是:"...
js倒計(jì)時(shí)刷新
</script><p>現(xiàn)在剩下<script language="JavaScript" type="text/JavaScript">myCounter.show();</script>秒鐘!</p> ---------------------------...
window對象詳解_不再說教,不再爭論
裝飾博客的技巧及代碼
透明FLASH特效 透明日歷代碼 博客鼠標(biāo)特效代碼|鼠標(biāo)特效代碼 禁止右鍵代碼 狀態(tài)欄文字代碼
網(wǎng)頁特效代碼庫
添加摘要
Javascript做的倒計(jì)時(shí)時(shí)鐘代碼實(shí)例
var test_val;document.tform3.ctd.value = GetCountdownTime(document.tform3.cs.value);document.tform4.ctd.value = GetCountdownTime(document.tform4.cs.value);test_val = el("test_val&quo...
[轉(zhuǎn)]跨域執(zhí)行 腳本JS
[轉(zhuǎn)]跨域執(zhí)行 腳本JS域執(zhí)行 腳本JS。2. 如果要獲取的數(shù)據(jù)位于不同的根域時(shí),,則可以在服務(wù)器上寫一個(gè)腳本作為代理,,由服務(wù)器上的腳本獲取不同域的數(shù)據(jù),然后傳遞給在同一個(gè)域中的網(wǎng)頁,。test.html:<h...
微信掃碼,,在手機(jī)上查看選中內(nèi)容
微信掃碼,在手機(jī)上查看選中內(nèi)容