我想啓用所有禁用輸入和submiting形式,所以我可以得到所有禁用的元素值之前選擇元素。啓用所有禁用輸入和選擇元素
所以我試圖
function enable() {
$('input[type="text"], input[type="checkbox"], select').prop("disabled", true).each(function() {
if ($(this).is(':disabled')) {
$(this).attr('disabled', false);
}
});
}
此代碼不能正常工作,所以你可以幫我這個工作。
在此先感謝....
'$( '輸入[類型= 「文本」],輸入[類型= 「複選框」],選擇')。removeProp(」禁用')' – adeneo
不,它不工作。 –