var val = $("#ipt").is(":disabled"); // true / falseprop 設定var val = $("#ipt").prop("disabled"); // true / false
var val = $("#ipt").attr("disabled"); // disabled / undefined
$("#ipt").prop("disabled",true); //禁用attr 設定$("#ipt").prop("disabled",false); //可編輯
$("#ipt").prop("disabled",「disabled」); //禁用
$("#ipt").prop("disabled",「」); //可編輯
$("#ipt").attr("disabled",true); //禁用所以在jquery中最好使用prop獲取disabled屬性。$("#ipt").attr("disabled",false); //可編輯
$("#ipt").attr("disabled",「disabled」); //禁用
$("#ipt").attr("disabled",「」); //禁用
$("#ipt").removeattr("disabled"); //可編輯
var val = $("#ipt").is(":disabled"); // true / falseprop 設定var val = $("#ipt").prop("disabled"); // true / false
var val = $("#ipt").attr("disabled"); // disabled / undefined
$("#ipt").prop("disabled",true); //禁用attr 設定$("#ipt").prop("disabled",false); //可編輯
$("#ipt").prop("disabled",「disabled」); //禁用
$("#ipt").prop("disabled",「」); //可編輯
$("#ipt").attr("disabled",true); //禁用所以在jquery中最好使用prop獲取disabled屬性。$("#ipt").attr("disabled",false); //可編輯
$("#ipt").attr("disabled",「disabled」); //禁用
$("#ipt").attr("disabled",「」); //禁用
$("#ipt").removeattr("disabled"); //可編輯
jQuery中的型別判斷
在jquery中有乙個type方法,在1.11.2中是這樣寫的 1 var class2type 2var tostring class2type.tostring 3 jquery.each boolean number string function array date regexp obje...
jquery繫結input的change事件
背景 在做乙個登入頁時,如果使用者未輸入驗證碼則無法點選登入按鈕,所以想到了用input的change事件,但是在寫完後發現無法監聽input值的改變。解決辦法 改為了input事件 input的change事件 相當於blur事件 使用者在輸入完成後失去焦點才會觸發,不能實時監聽輸入框值的變化,相...
jQuery 從input中讀取的內容的型別
如下html yesno 使用jquery 去讀取radio的值 var value1 input name test1 val check the value1 if value1 true do something else do otherthing 問題來了 如果該radio控制項是選擇ye...