1 頁 (共 1 頁)

提交表单后禁用提交按钮 - JQuery

發表於 : 2013-09-14 08:56:51
yehlu
[url]http://www.oschina.net/code/snippet_1262999_24770/url]

代碼: 選擇全部

<form id="myform" action="someUrl.php" method="get">
    <input name="username" />
    <!-- some more form fields -->
    <input id="submit" type="submit" />
</form>

代碼: 選擇全部

$('#myform').submit(function(){
    $('input[type=submit]', this).attr('disabled', 'disabled');
});