1. var count = $("ul[@pid = '5']").length ; if (count == 0) ; return "沒有";return "有";
//判斷頁面的UL上有沒有PID等於5的,一般來說不要用ELSE
2. this.mainUl.find("li").mouseover(function(i) { }); //尋找UI裡面的所有UI,綁定回調匿名函數
3.this.mainUl.parent().find("ul").each(function() { }); //循環父節點的所有UI,執行回調匿名函數
4.//取得下拉選單的選取值
$(#testSelect option:selected').text();
或$("#testSelect").find('option:selected').text();
或$("#testSelect").val();
5. $("#select").empty();//清空下拉框
6. $("input[@type=checkbox][@checked]").val(); //得到復選框的選中的第一項的值
//由於復選框一般選中的是多個,所以可以循環輸出
$("input[@type=checkbox][@checked]").each(function(){
alert($(this).val());});
$("#chk1").attr("checked",'');//將屬性填充為不打勾
$("#chk2").attr("checked",true);//將屬性填充為打勾
if($("#chk1").attr('checked')==undefined)return '未選';retuen '已選'//判斷是否已經打勾
$('#select_id')[0].selectedIndex = 1;//select下拉框的第二個元素為當前選中值(更改索引值)
7. $("input[@type=radio][@checked]").val(); //單選組radio(獲得頁面所有RADIO的值):