「jQuery入門」removeProp( )でプロパティを削除するサンプル
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");
})