91网首页-91网页版-91网在线观看-91网站免费观看-91网站永久视频-91网站在线播放

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

JavaScript就這么回事 (JS基礎知識整理)

admin
2010年12月30日 21:47 本文熱度 3453

1 創(chuàng)建腳本塊


引用內(nèi)容程序代碼
<script language=”JavaScript”>
JavaScript 代碼寫在這里面
</script>


2 隱藏腳本代碼
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
document.write(“Hello”);
// –>
</script>
在不支持JavaScript的瀏覽器中將不執(zhí)行相關代碼


3 瀏覽器不支持的時候顯示
引用內(nèi)容程序代碼
<noscript>
Hello to the non-JavaScript browser.
</noscript>


4 鏈接外部腳本文件
引用內(nèi)容程序代碼
<script language=”JavaScript” src=”/”filename.js””></script>


5 注釋腳本
引用內(nèi)容程序代碼
// This is a comment
document.write(“Hello”); // This is a comment
/*
All of this
is a comment
*/


6 輸出到瀏覽器
引用內(nèi)容程序代碼
document.write(“<strong>Hello</strong>”);


7 定義變量
引用內(nèi)容程序代碼
var myVariable = “some value”;


8 字符串相加
引用內(nèi)容程序代碼
var myString = “String1” + “String2”;


9 字符串搜索
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var myVariable = “Hello there”;
var therePlace = myVariable.search(“there”);
document.write(therePlace);
// –>
</script>


10 字符串替換
引用內(nèi)容程序代碼
thisVar.replace(“Monday”,”Friday”);


11 格式化字串
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var myVariable = “Hello there”;
document.write(myVariable.big() + “<br>”);
document.write(myVariable.blink() + “<br>”);
document.write(myVariable.bold() + “<br>”);
document.write(myVariable.fixed() + “<br>”);
document.write(myVariable.fontcolor(“red”) + “<br>”);
document.write(myVariable.fontsize(“18pt”) + “<br>”);
document.write(myVariable.italics() + “<br>”);
document.write(myVariable.small() + “<br>”);
document.write(myVariable.strike() + “<br>”);
document.write(myVariable.sub() + “<br>”);
document.write(myVariable.sup() + “<br>”);
document.write(myVariable.toLowerCase() + “<br>”);
document.write(myVariable.toUpperCase() + “<br>”);
var firstString = “My String”;
var finalString = firstString.bold().toLowerCase().fontcolor(“red”);
// –>
</script>


12 創(chuàng)建數(shù)組
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var myArray = new Array(5);
myArray[0] = “First Entry”;
myArray[1] = “Second Entry”;
myArray[2] = “Third Entry”;
myArray[3] = “Fourth Entry”;
myArray[4] = “Fifth Entry”;
var anotherArray = new Array(“First Entry”,”Second Entry”,”Third Entry”,”Fourth Entry”,”Fifth Entry”);
// –>
</script>


13 數(shù)組排序
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var myArray = new Array(5);
myArray[0] = “z”;
myArray[1] = “c”;
myArray[2] = “d”;
myArray[3] = “a”;
myArray[4] = “q”;
document.write(myArray.sort());
// –>
</script>


14 分割字符串
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var myVariable = “a,b,c,d”;
var stringArray = myVariable.split(“,”);
document.write(stringArray[0]);
document.write(stringArray[1]);
document.write(stringArray[2]);
document.write(stringArray[3]);
// –>
</script>


15 彈出警告信息
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
window.alert(“Hello”);
// –>
</script>


16 彈出確認框
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
var result = window.confirm(“Click OK to continue”);
// –>
</script>


17 自定義函數(shù)
引用內(nèi)容程序代碼
<script language=”JavaScript”>
<!–
function multiple(number1,number2) {
var result = number1 * number2;
return result;
}
// –>
</script>


18 調(diào)用JS函數(shù)
引用內(nèi)容程序代碼
<a href=”#” onClick=”functionName()”>Link text</a>
<a href=”/”javascript:functionName”()”>Link text</a>


19 在頁面加載完成后執(zhí)行函數(shù)
引用內(nèi)容程序代碼
<body onLoad=”functionName();”>
Body of the page
</body>


20 條件判斷
引用內(nèi)容程序代碼
<script>
<!–
var userChoice = window.confirm(“Choose OK or Cancel”);
var result = (userChoice == true) ? “OK” : “Cancel”;
document.write(result);
// –>
</script>


21 指定次數(shù)循環(huán)
引用內(nèi)容程序代碼
<script>
<!–
var myArray = new Array(3);
myArray[0] = “Item 0”;
myArray[1] = “Item 1”;
myArray[2] = “Item 2”;
for (i = 0; i < myArray.length; i++) {
document.write(myArray[i] + “<br>”);
}
// –>
</script>


22 設定將來執(zhí)行
引用內(nèi)容程序代碼
<script>
<!–
function hello() {
window.alert(“Hello”);
}
window.setTimeout(“hello()”,5000);
// –>
</script>


23 定時執(zhí)行函數(shù)
引用內(nèi)容程序代碼
<script>
<!–
function hello() {
window.alert(“Hello”);
window.setTimeout(“hello()”,5000);
}
window.setTimeout(“hello()”,5000);
// –>
</script>


24 取消定時執(zhí)行
引用內(nèi)容程序代碼
<script>
<!–
function hello() {
window.alert(“Hello”);
}
var myTimeout = window.setTimeout(“hello()”,5000);
window.clearTimeout(myTimeout);
// –>
</script>


25 在頁面卸載時候執(zhí)行函數(shù)
引用內(nèi)容程序代碼
<body onUnload=”functionName();”>
Body of the page
</body>


JavaScript就這么回事2:瀏覽器輸出


26 訪問document對象
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var myURL = document.URL;
window.alert(myURL);
</script>


27 動態(tài)輸出HTML
引用內(nèi)容程序代碼
<script language=”JavaScript”>
document.write(“<p>Here’s some information about this document:</p>”);
document.write(“<ul>”);
document.write(“<li>Referring Document: “ + document.referrer + “</li>”);
document.write(“<li>Domain: “ + document.domain + “</li>”);
document.write(“<li>URL: “ + document.URL + “</li>”);
document.write(“</ul>”);
</script>


28 輸出換行
引用內(nèi)容程序代碼
document.writeln(“<strong>a</strong>”);
document.writeln(“b”);


29 輸出日期
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var thisDate = new Date();
document.write(thisDate.toString());
</script>


30 指定日期的時區(qū)
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var myOffset = -2;
var currentDate = new Date();
var userOffset = currentDate.getTimezoneOffset()/60;
var timeZoneDifference = userOffset – myOffset;
currentDate.setHours(currentDate.getHours() + timeZoneDifference);
document.write(“The time and date in Central Europe is: “ + currentDate.toLocaleString());
</script>


31 設置日期輸出格式
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var thisDate = new Date();
var thisTimeString = thisDate.getHours() + “:” + thisDate.getMinutes();
var thisDateString = thisDate.getFullYear() + “/” + thisDate.getMonth() + “/” + thisDate.getDate();
document.write(thisTimeString + “ on “ + thisDateString);
</script>


32 讀取URL參數(shù)
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var urlParts = document.URL.split(“?”);
var parameterParts = urlParts[1].split(“&”);
for (i = 0; i < parameterParts.length; i++) {
var pairParts = parameterParts[i].split(“=”);
var pairName = pairParts[0];
var pairValue = pairParts[1];
document.write(pairName + “ :“ +pairValue );
}
</script>
你還以為HTML是無狀態(tài)的么?


33 打開一個新的document對象
引用內(nèi)容程序代碼
<script language=”JavaScript”>
function newDocument() {
document.open();
document.write(“<p>This is a New Document.</p>”);
document.close();
}
</script>


34 頁面跳轉(zhuǎn)
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.location = “http://www.x-force.cn/”;
</script>


35 添加網(wǎng)頁加載進度窗口
引用內(nèi)容程序代碼
<html>
<head>
<script language=’javaScript’>
var placeHolder = window.open(‘holder.html’,'placeholder’,'width=200,height=200′);
</script>
<title>The Main Page</title>
</head>
<body onLoad=’placeHolder.close()’>
<p>This is the main page</p>
</body>
</html>


JavaScript就這么回事3:圖像


36 讀取圖像屬性
引用內(nèi)容程序代碼
<img src=”/”image1.jpg”” name=”myImage”>
<a href=”# ” onClick=”window.alert(document.myImage.width)”>Width</a>


37 動態(tài)加載圖像
引用內(nèi)容程序代碼
<script language=”JavaScript”>
myImage = new Image;
myImage.src = “Tellers1.jpg”;
</script>


38 簡單的圖像替換
引用內(nèi)容程序代碼
<script language=”JavaScript”>
rollImage = new Image;
rollImage.src = “rollImage1.jpg”;
defaultImage = new Image;
defaultImage.src = “image1.jpg”;
</script>
<a href=”/”myUrl”” onMouseOver=”document.myImage.src = rollImage.src;”
onMouseOut=”document.myImage.src = defaultImage.src;”>
<img src=”/”image1.jpg”” name=”myImage” width=100 height=100 border=0>


39 隨機顯示圖像
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var imageList = new Array;
imageList[0] = “image1.jpg”;
imageList[1] = “image2.jpg”;
imageList[2] = “image3.jpg”;
imageList[3] = “image4.jpg”;
var imageChoice = Math.floor(Math.random() * imageList.length);
document.write(‘<img src=”’ + imageList[imageChoice] + ‘“>’);
</script>


40 函數(shù)實現(xiàn)的圖像替換
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var source = 0;
var replacement = 1;
function createRollOver(originalImage,replacementImage) {
var imageArray = new Array;
imageArray[source] = new Image;
imageArray[source].src = originalImage;
imageArray[replacement] = new Image;
imageArray[replacement].src = replacementImage;
return imageArray;
}
var rollImage = createRollOver(“image1.jpg”,”rollImage1.jpg”);
</script>
<a href=”#” onMouseOver=”document.myImage1.src = rollImage1[replacement].src;”
onMouseOut=”document.myImage1.src = rollImage1[source].src;”>
<img src=”/”image1.jpg”” width=100 name=”myImage1” border=0>
</a>


41 創(chuàng)建幻燈片
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var imageList = new Array;
imageList[0] = new Image;
imageList[0].src = “image1.jpg”;
imageList[1] = new Image;
imageList[1].src = “image2.jpg”;
imageList[2] = new Image;
imageList[2].src = “image3.jpg”;
imageList[3] = new Image;
imageList[3].src = “image4.jpg”;
function slideShow(imageNumber) {
document.slideShow.src = imageList[imageNumber].src;
imageNumber += 1;
if (imageNumber < imageList.length) {
window.setTimeout(“slideShow(“ + imageNumber + “)”,3000);
}
}
</script>
</head>
<body onLoad=”slideShow(0)”>
<img src=”/”image1.jpg”” width=100 name=”slideShow”>


42 隨機廣告圖片
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var imageList = new Array;
imageList[0] = “image1.jpg”;
imageList[1] = “image2.jpg”;
imageList[2] = “image3.jpg”;
imageList[3] = “image4.jpg”;
var urlList = new Array;
urlList[0] = “http://some.host/”;
urlList[1] = “http://another.host/”;
urlList[2] = “http://somewhere.else/”;
urlList[3] = “http://right.here/”;
var imageChoice = Math.floor(Math.random() * imageList.length);
document.write(‘<a href=”’ + urlList[imageChoice] + ‘“><img src=”’ + imageList[imageChoice] + ‘“></a>’);
</script>


JavaScript就這么回事4:表單


43 表單構(gòu)成
引用內(nèi)容程序代碼
<form method=”post” action=”target.html” name=”thisForm”>
<input type=”text” name=”myText”>
<select name=”mySelect”>
<option value=”1”>First Choice</option>
<option value=”2”>Second Choice</option>
</select>
<br>
<input type=”submit” value=”Submit Me”>
</form>


44 訪問表單中的文本框內(nèi)容
引用內(nèi)容程序代碼
<form name=”myForm”>
<input type=”text” name=”myText”>
</form>
<a href=’#’ onClick=’window.alert(document.myForm.myText.value);’>Check Text Field</a>


45 動態(tài)復制文本框內(nèi)容
引用內(nèi)容程序代碼
<form name=”myForm”>
Enter some Text: <input type=”text” name=”myText”><br>
Copy Text: <input type=”text” name=”copyText”>
</form>
<a href=”#” onClick=”document.myForm.copyText.value =
document.myForm.myText.value;”>Copy Text Field</a>


46 偵測文本框的變化
引用內(nèi)容程序代碼
<form name=”myForm”>
Enter some Text: <input type=”text” name=”myText” onChange=”alert(this.value);”>
</form>


47 訪問選中的Select
引用內(nèi)容程序代碼
<form name=”myForm”>
<select name=”mySelect”>
<option value=”First Choice”>1</option>
<option value=”Second Choice”>2</option>
<option value=”Third Choice”>3</option>
</select>
</form>
<a href=’#’ onClick=’alert(document.myForm.mySelect.value);’>Check Selection List</a>


48 動態(tài)增加Select項
引用內(nèi)容程序代碼
<form name=”myForm”>
<select name=”mySelect”>
<option value=”First Choice”>1</option>
<option value=”Second Choice”>2</option>
</select>
</form>
<script language=”JavaScript”>
document.myForm.mySelect.length++;
document.myForm.mySelect.options[document.myForm.mySelect.length - 1].text = “3”;
document.myForm.mySelect.options[document.myForm.mySelect.length - 1].value = “Third Choice”;
</script>


49 驗證表單字段
引用內(nèi)容程序代碼
<script language=”JavaScript”>
function checkField(field) {
if (field.value == “”) {
window.alert(“You must enter a value in the field”);
field.focus();
}
}
</script>
<form name=”myForm” action=”target.html”>
Text Field: <input type=”text” name=”myField”onBlur=”checkField(this)”>
<br><input type=”submit”>
</form>


50 驗證Select項
引用內(nèi)容程序代碼
function checkList(selection) {
if (selection.length == 0) {
window.alert(“You must make a selection from the list.”);
return false;
}
return true;
}


51 動態(tài)改變表單的action
引用內(nèi)容程序代碼
<form name=”myForm” action=”login.html”>
Username: <input type=”text” name=”username”><br>
Password: <input type=”password” name=”password”><br>
<input type=”button” value=”Login” onClick=”this.form.submit();”>
<input type=”button” value=”Register” onClick=”this.form.action = ‘register.html’; this.form.submit();”>
<input type=”button” value=”Retrieve Password” onClick=”this.form.action = ‘password.html’; this.form.submit();”>
</form>


52 使用圖像按鈕
引用內(nèi)容程序代碼
<form name=”myForm” action=”login.html”>
Username: <input type=”text” name=”username”><br>
Password: <input type=”password”name=”password”><br>
<input type=”image” src=”/”login.gif”” value=”Login”>
</form>


53 表單數(shù)據(jù)的加密
引用內(nèi)容程序代碼
<SCRIPT LANGUAGE=’JavaScript’>
<!–
function encrypt(item) {
var newItem = ”;
for (i=0; i < item.length; i++) {
newItem += item.charCodeAt(i) + ‘.’;
}
return newItem;
}
function encryptForm(myForm) {
for (i=0; i < myForm.elements.length; i++) {
myForm.elements[i].value = encrypt(myForm.elements[i].value);
}
}


//–>
</SCRIPT>
<form name=’myForm’ onSubmit=’encryptForm(this); window.alert(this.myField.value);’>
Enter Some Text: <input type=text name=myField><input type=submit>
</form>


JavaScript就這么回事5:窗口和框架


54 改變?yōu)g覽器狀態(tài)欄文字提示
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.status = “A new status message”;
</script>


55 彈出確認提示框
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var userChoice = window.confirm(“Click OK or Cancel”);
if (userChoice) {
document.write(“You chose OK”);
} else {
document.write(“You chose Cancel”);
}
</script>


56 提示輸入
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var userName = window.prompt(“Please Enter Your Name”,”Enter Your Name Here”);
document.write(“Your Name is “ + userName);
</script>


57 打開一個新窗口
引用內(nèi)容//打開一個名稱為myNewWindow的瀏覽器新窗口
程序代碼
<script language=”JavaScript”>
window.open(“http://www.liu21st.com/”,”myNewWindow”);
</script>


58 設置新窗口的大小
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.open(“http://www.liu21st.com/”,”myNewWindow”,’height=300,width=300′);
</script>


59 設置新窗口的位置
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.open(“http://www.liu21st.com/”,”myNewWindow”,’height=300,width=300,left=200,screenX=200,top=100,screenY=100′);
</script>


60 是否顯示工具欄和滾動欄
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.open(“http://www.x-force.cn/”,toolbar=no, menubar=no);
</script>


61 是否可以縮放新窗口的大小
引用內(nèi)容程序代碼
<script language=”JavaScript”>
window.open(‘http://www.x-force.cn/’ , ‘myNewWindow’, ‘resizable=yes’ );</script>


62 加載一個新的文檔到當前窗口
引用內(nèi)容程序代碼
<a href=’#’ onClick=’document.location = ’125a.html’;’ >Open New Document</a>


63 設置頁面的滾動位置
引用內(nèi)容程序代碼
<script language=”JavaScript”>
if (document.all) { //如果是IE瀏覽器則使用scrollTop屬性
document.body.scrollTop = 200;
} else { //如果是NetScape瀏覽器則使用pageYOffset屬性
window.pageYOffset = 200;
}</script>


64 在IE中打開全屏窗口
引用內(nèi)容程序代碼
<a href=’#’ onClick=”window.open(‘http://www.devdao.com/’,'newWindow’,'fullScreen=yes’);”>Open a full-screen window</a>


65 新窗口和父窗口的操作
引用內(nèi)容程序代碼
<script language=”JavaScript”>
//定義新窗口
var newWindow = window.open(“128a.html”,”newWindow”);
newWindow.close(); //在父窗口中關閉打開的新窗口
</script>在新窗口中關閉父窗口
程序代碼
window.opener.close()


66 往新窗口中寫內(nèi)容
引用內(nèi)容程序代碼
<script language=”JavaScript”>
var newWindow = window.open(“”,”newWindow”);
newWindow.document.open();
newWindow.document.write(“This is a new window”);
newWIndow.document.close();
</script>


67 加載頁面到框架頁面
引用內(nèi)容程序代碼
<frameset cols=”50%,*”>
<frame name=”frame1” src=”/”135a.html””>
<frame name=”frame2” src=”/”about:blank””>
</frameset>
在frame1中加載frame2中的頁面
parent.frame2.document.location = “135b.html”;


68 在框架頁面之間共享腳本
引用內(nèi)容如果在frame1中html文件中有個腳本
程序代碼
function doAlert() {
window.alert(“Frame 1 is loaded”);
}
那么在frame2中可以如此調(diào)用該方法


程序代碼
<body onLoad=”parent.frame1.doAlert();”>
This is frame 2.
</body>


69 數(shù)據(jù)公用
引用內(nèi)容可以在框架頁面定義數(shù)據(jù)項,使得該數(shù)據(jù)可以被多個框架中的頁面公用
程序代碼
<script language=”JavaScript”>
var persistentVariable = “This is a persistent value”;
</script>
<frameset cols=”50%,*”>
<frame name=”frame1” src=”/”138a.html””>
<frame name=”frame2” src=”/”138b.html””>
</frameset>


這樣在frame1和frame2中都可以使用變量persistentVariable


70 框架代碼庫
引用內(nèi)容根據(jù)以上的一些思路,我們可以使用一個隱藏的框架頁面來作為整個框架集的代碼庫


程序代碼
<frameset cols=”0,50%,*”>
<frame name=”codeFrame” src=”/”140code.html””>
<frame name=”frame1” src=”/”140a.html””>
<frame name=”frame2” src=”/”140b.html””>
</frameset>


該文章在 2010/12/30 21:47:05 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運作、調(diào)度、堆場、車隊、財務費用、相關報表等業(yè)務管理,結(jié)合碼頭的業(yè)務特點,圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved

主站蜘蛛池模板: 日韩免费视 | aⅴ三级| 另类老妇奶性 | 欧美三区日韩一 | 国产亚洲精品线 | 国产夜色精品视频 | 日韩激情网 | 欧美一级aa| 成人精品HD | 国语第一次处破女 | 九热官网 | 97精品国| 蜜桃视频午夜 | 日韩男女做性高清在 | 99精品国产一区 | 精品视频网站午夜 | 国产精品国语对白 | 国产偷窥熟女 | www.妞干网| 国产日韩精品高清 | www精品免费观看 | 日韩欧美自拍区 | 日韩一级性生活 | 国产精品日韩精品 | 欧美日韩精品一区 | 福利二区在线观看 | 91视频看看九色 | 国产12页 | www.在线干| 加勒比色 | 欧美日韩国产伦理 | 人人干97 | 国产传媒片免费观看 | 日本一区高清 | 日本一本在线播放 | 日本亲近相奷中 | 久色福利 | 国产大片欧美精品 | 乱子伦在线观看 | 理论在线影院 | 国产盗摄不卡 |