「jQuery入門」removeProp( )の使い方

2019年2月25日

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 />

jQuery

Posted by arkgame