星期二, 5月 03, 2011

[jQuery] 快快樂樂jQuery-常用基礎語法篇

本文記錄常用的Jquery語法:

綁定多個id事件
$("#id1,#id2,#id3").click(function(){..........}); 

取得select的值:
$("#targetlist option:selected").text();

使用selector eq(index)設定select某一option被選取:
$("#selectElem option:eq(1)").attr("selected","true");

input的disalbed控制:
//disabled
$('#target').attr("disabled", true); 
//enable
$('#target').removeAttr("disabled"); 

取得元素 tag name
var elemName = $("#target").attr("tagName");

判斷元素是否存在
if ( $("#target").length > 0 ) {

...
...

}

display:block or none
$("#target").css("display","block");
$("#target").css("display","none");

偵測鍵盤,keycode請參考這篇
$("#target").keydown(function(event){
     console.log(event.keyCode);
 });

判斷Checkbox是否被選取
$("#target").attr("checked");//checked: true, unchecked: false

取得radio按鈕的值
$("input[name=gender]:checked").val()

沒有留言:

張貼留言

留個話吧:)

其他你感興趣的文章

Related Posts with Thumbnails