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

jQuery & jQuery UI
回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

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

文章 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');
});
回覆文章

回到「jQuery」