彈出對話框函數:alert(), prompt(), confirm()
得到輸入焦點函數:focus()javascript
轉向使用window.location.href = ""
引入外部 js 使用<script src=""></script>
php
獲取 name 爲 formName 的表單並將該表單數據提交到服務器。但這行代碼是不能運行的,有兩處錯誤,一是經過表單名稱來獲取表單獲得時候,應該寫成document.forms[‘formName’]
,提交表單事件使用submit 方法,須要加上括號,下面給出簡單的示例代碼:html
<form action="a.php" meathod="post" name="login" id="f1"> 用戶名:<input type="text" name="username"/> <input type="button" id="btn" value="提交"/> </form> <script type="text/javascript"> document.getElementById("btn").onclick=function () { if (document.forms['login'].username.value != '') { document.forms['login'].submit(); } } </script>
<input id="txt" type="text" value="baidu" />
編寫代碼,當鼠標劃過文本框,自動選中文本框中的內容。(百度)<input id="txt" type="text" value="baidu"/> <script type="text/javascript"> var textBox = document.getElementById('txt'); textBox.onmouseover = function(){ this.select(); } </script>
主窗口:java
<a href="" id="a1" target="new">新窗口</a> <div id="msg"></div> <script type="text/javascript"> var a1 = document.getElementById('a1'); a1.onclick = function () { window.open('new.html','new','location=no,toolbar=no'); return false; } </script>
彈出窗口:數組
<input type="text" name="message" id="m1"/><br /> <input type="button"value="關閉" id="btn"/><br /> <script type="text/javascript"> var btn = document.getElementById('btn'); var message = document.getElementById('m1'); btn.onclick = function(){ var div = window.opener.document.getElementById('msg'); div.innerHTML = message.value; window.close(); } </script>
使用 XMLHttpRequest 對象異步請求瀏覽器
var arr = new Array( new Array(1,2,3,4), new Array("abc", "def", "xyz"), ); for(i = 0; i < arr.length; i++) { document.write(arr[0]); }
懷疑這個代碼寫錯了,第二個 new array 後面的逗號是多餘的,若是此處沒問題,則代碼是正確的,輸出的結果是 1,2,3,4 1,2,3,4
注:arr 是一個二維數組,該數組有兩個元素,第一個元素是數組[1,2,3,4],第二個元素也是一個數組爲["abc", "def", "xyz"],for 循環語句執行了兩次,但都是輸出第一個元素,即數組[1,2,3,4]。服務器
<script type="text/javascript"> function array_unique(arr){ var result = arr; for (var i = 0; i < arr.length; i++) { for (var j = 0; i < arr.length; j++) { temp = arr[i]; // 若是當前元素與後面某一個元素相等,則移除頂元素 if ((i+j+1) < arr.length && temp === arr[i+j+1]) { result.splice(i+j+1,1); } } } return result; } var a = [4,7,8,5,8,6,43,7,0,false,'',{}]; var b = array_unique(a); alert(b);//4,5,8,5,6,43,0,false,[object Object] </script>
A. var obj = ( );
B. var obj = [ ];
C. var obj = { };
D. var obj = //;
答案:Aapp
A. null instanceof Object
B. null === undefined
C. null == undefined
D. NaN == NaN
答案:Cdom
A. foo.att
B. foo("att")
C. foo["att"]
D. foo{"att"}
E. foo["a"+"t"+"t"]
答案:ACE異步
(1).直接做爲元素的屬性,如<img onclick="alert( 'hello' );" src="hello.jpg">
(2).使用 DOM 0 級事件,簡單,兼容性好,如 img.onclick = function(){}
(3).使用 DOM 2 級事件,功能更強大,在非 IE 等標準瀏覽其中,使用 addEventListener,在IE 瀏覽器中則使用 attachEvent 來實現。
JavaScript 不支持二維數組定義,能夠用 arr[0] = new array()來解決。
<script type="text/javascript"> function go2b() { window.location.href = "b.html"; window.close(); } setTimeout("go2b()",5000);//5秒後自動執行go2b方法 </script>
(1). var img = new Image();
(2).var img = document.createElement("image")
(3). img.innerHTML = "<img src='xxx.jpg' />"
前進: history.forward();
或者 history.go(1);
後退: history.back ();
或者history.go(-1);
<script type="text/javascript"> var div = document.createElement("div"); var a = document.createElement("a"); a.href = "http://www.baidu.com"; var span = document.createElement("span"); span.innerHTML = "百度"; a.appendChild(span); div.appendChild(a); document.body.appendChild(div); </script>
結果 HTML:
<div><a href="http://www.baidu.com"><span>百度</span></a></div>
document.getElementById( 'button' ).onclick = function(){ window.open ('page.html'); }
其中,button 是按鈕的 id,page.html 是要彈出的窗口頁面。
JavaScript 中包括 5 種基本數據類型,分別是 Number,String,Boolean,Null 和 Undefined。