「jQuery入門」removeProp( )の使い方
1.propメソッドを有効にする
$(“button").click(function(){
$(“input").prop(“disabled",false);
})
2.プロパティを削除する
JSコード
$(“button").click(function(){
$(“input").removeProp(“disabled");
})
htmlコード
<button>button</button>
<input type="text" disabled />