1. document.write( " "); 輸出語句
2.JS中的注釋為//
3.傳統的HTML文檔順序是:document- >html- >(head,body)
4.一個瀏覽器窗口中的DOM順序是:window-
>(navigator,screen,history,location,document)
5.得到表單中元素的名稱和值:document.getElementById( "表單中元素的ID號 ").name(或value)
6.一個小寫轉大寫的js: document.getElementById( "output ").value =
document.getElementById( "input ").value.toUpperCase();
7.JS中的值類型:String,Number,Boolean,Null,Object,Function
8.JS中的字符型轉換成數值型:parseInt(),parseFloat()
9.JS中的數字轉換成字符型:( " " 變量)
10.JS中的取字符串長度是:(length)
11.JS中的字符與字符相連接使用 號.
12.JS中的比較操作符有:==等于,!=不等于, >, >=, <. <=
13.JS中聲明變量使用:var來進行聲明
14.JS中的判定語句結構:if(condition){}else{}
15.JS中的循環結構:for([initial expression];[condition];[upadte
expression]) {inside loop}
16.循環中止的命令是:break
17.JS中的函數定義:function functionName([parameter],...){statement[s]}
18.當文件中出現多個form表單時.可以用document.forms[0],document.forms[1]來代替.
19.窗口:打開窗口window.open(), 關閉一個窗口:window.close(), 窗口本身:self
20.狀態欄的設置:window.status= "字符 ";
21.彈出提示信息:window.alert( "字符 ");
22.彈出確認框:window.confirm();
23.彈出輸入提示框:window.prompt();
24.指定當前顯示鏈接的位置:window.location.href= "URL "
25.取出窗體中的所有表單的數量:document.forms.length
26.關閉文檔的輸出流:document.close();
27.字符串追加連接符: =
28.創建一個文檔元素:document.createElement(),document.createTextNode()
29.得到元素的方法:document.getElementById()
30.設置表單中所有文本型的成員的值為空:
var form = window.document.forms[0]
for (var i = 0; i <form.elements.length;i ){
if (form.elements.type == "text "){
form.elements.value = " ";
}
}
31.復選按鈕在JS中判定是否選中:document.forms[0].checkThis.checked
(checked屬性代表為是否選中返回TRUE或FALSE)
32.單選按鈕組(單選按鈕的名稱必須相同):取單選按鈕組的長度document.forms[0].groupName.length
33.單選按鈕組判定是否被選中也是用checked.
34.下拉列表框的值:document.forms[0].selectName.options[n].value
(n有時用下拉列表框名稱加上.selectedIndex來確定被選中的值)
35.字符串的定義:var myString = new String( "This is lightsword ");
36.字符串轉成大寫:string.toUpperCase(); 字符串轉成小寫:string.toLowerCase();
37.返回字符串2在字符串1中出現的位置:String1.indexOf( "String2 ")!=-1則說明沒找到.
38.取字符串中指定位置的一個字符:StringA.charAt(9);
39.取出字符串中指定起點和終點的子字符串:stringA.substring(2,6);
新聞熱點
疑難解答
圖片精選