js方法小結
阿新 • • 發佈:2019-02-17
11.一個瀏覽器視窗中的DOM順序是:window->(navigator,screen,history,location,document)
12 .一個小寫轉大寫的JS: document.getElementById("output").value = document.getElementById("input").value.toUpperCase();
13.JS中的字元型轉換成數值型:parseInt(),parseFloat() 14.彈出確認框:window.confirm();
15.彈出輸入提示框:window.prompt();
16.指定當前顯示連結的位置:window.location.href="URL"
17.設定表單中所有文字型的成員的值為空:
var form = window.document.forms[0]
for (var i = 0; i<!-- //-->
18.引用一個檔案式的JS:<script type="text/javascript" src="aaa.js"></script>
19.指定在不支援指令碼的瀏覽器顯示的HTML:<noscript></noscript>
20.當超鏈和ONCLICK事件都有時,則老版本的瀏覽器轉向a.html,否則轉向b.html.例:<a href="a.html" onclick="location.href='b.html';return false">dfsadf</a>
21.防止使用者對文字框中輸入文字:onfocus="this.blur()"
22.取出該元素在頁面中出現的數量:document.all.tags("div(或其它HTML標記符)").length
23.JS中分為兩種窗體輸出:模態和非模態.window.showModaldialog(),window.showModeless()
24.狀態列文字的設定:window.status='文字',預設的狀態列文字設定:window.defaultStatus = '文字.';
25.新增到收藏夾:external.AddFavorite("http://www.google.com","Google");
26.JS中遇到指令碼錯誤時不做任何操作:window.onerror = doNothing; 指定錯誤控制代碼的語法為:window.onerror = handleError;
12 .一個小寫轉大寫的JS: document.getElementById("output").value = document.getElementById("input").value.toUpperCase();
13.JS中的字元型轉換成數值型:parseInt(),parseFloat() 14.彈出確認框:window.confirm();
15.彈出輸入提示框:window.prompt();
16.指定當前顯示連結的位置:window.location.href="URL"
var form = window.document.forms[0]
for (var i = 0; i<!-- //-->
18.引用一個檔案式的JS:<script type="text/javascript" src="aaa.js"></script>
19.指定在不支援指令碼的瀏覽器顯示的HTML:<noscript></noscript>
20.當超鏈和ONCLICK事件都有時,則老版本的瀏覽器轉向a.html,否則轉向b.html.例:<a href="a.html" onclick="location.href='b.html';return false">dfsadf</a>
22.取出該元素在頁面中出現的數量:document.all.tags("div(或其它HTML標記符)").length
23.JS中分為兩種窗體輸出:模態和非模態.window.showModaldialog(),window.showModeless()
24.狀態列文字的設定:window.status='文字',預設的狀態列文字設定:window.defaultStatus = '文字.';
25.新增到收藏夾:external.AddFavorite("http://www.google.com","Google");