2010-08-24から1日間の記事一覧

jQueryでにリセットボタンをつける

<input type="reset">という手もありますが、フォーム全体がリセットされてしまうので、各<input type="file">毎にクリアボタンがあると便利でしょう。 参考:Clear upload file input field with jQuery //jQueryが必要です。 function add_clear_button(button){ $(button).wrap('<span></span>'); $(button).aft…