JQuery拿取物件的方式
$('#id') :透過元素的id
$('tagName') : 透過元素的標籤名稱
$('tagName tagName') : 透過元素的標籤名稱
$('tagName tagName') : 透過元素的標籤名稱,eg: $('ul li')
$('tagName#id): 透過元素的id和標籤名稱
$(':checkbox'):拿取input的type為checkbox'的所有元素:
Eg:
<input type="checkbox" name="appetizers" value="imperial"/> $('span[price] input[type=text]') :拿取下面的input元素 <span price="3"> <input type="text" name="imperial.quantity" disabled="disabled" value="1"/> </span> $('div',$(this).parents('div:first')):拿取该div的上(至少都是父节点)的第一个div节点 $('~ span:first',this): locates the first sibling of this that's a <span> element.
延遲載入js檔案:
$.getScript
範例:
Html檔案:
Java代碼
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>$.getScript Example</title> <link rel="stylesheet" type="text/css" href="../common.css"> <script type="text/javascript" src="../scripts/jquery-1.2.1.js"></script> <script type="text/javascript"> $(function(){ $('#loadButton').click(function(){ $.getScript(//在Firefox/3.0.1中会出现一个错误(语法错误,定义的变量不起作用,ff2没问题) 'new.stuff.js'//,function(){$('#inspectButton').click()} ); }); $('#inspectButton').click(function(){ someFunction(someVariable); test() }); }); </script> </head> <body> <button type="button" id="loadButton">Load</button> <button type="button" id="inspectButton">Inspect</button> </body> </html>
Html檔案:
Java代碼
alert("I'm inline!"); var someVariable = 'Value of someVariable'; function someFunction(value) { alert(value); } function test() { alert('test'); } alert("I'm inline!"); var someVariable = 'Value of someVariable'; function someFunction(value) { alert(value); } function test() { alert('test'); }
以上這篇jquery 遍歷數組each 方法詳解就是小編分享給大家的全部內容了,希望能給大家一個參考,也希望大家多多支持PHP中文網。
更多 jquery 遍歷數組 each 方法詳解相關文章請關注PHP中文網!