「jQuery入門」removeProp( )でプロパティを削除するサンプル

2018年6月24日

1.htmlコード
<button>削除</button>
<input class="cft_submit" type="submit" value="<s:property value="getText('kf.changfa’)" />" disabled>

2.jQueryコード
$(“button").click(function(){
$(“input").removeProp(“disabled");
})

JavaScript

Posted by arkgame