2012-11-27 62 views

回答

3

試試這個:

$("form *").prop("disabled", true); 
1

如果你想禁用all the input types like text, checkbox, radio etc你可以使用表單中的輸入。

$("form input").attr("disabled", "disabled"); 
相關問題