JQuery修改脚本

时间:2012-07-20 14:49:09

标签: jquery

我目前使用此脚本处理提交按钮,任何人都可以帮我修改此脚本以使用链接(a href)

$(document).ready(function(e) {
    $('div.submitbutton').click(function(event) {
        $(this).val('Loading.. Please wait');
        $('#loading').show();
        setTimeout(function() {
            $('#myform').submit();
        }, 200);
    });
});

2 个答案:

答案 0 :(得分:2)

$(document).ready(function(e) {
  $('div.submitbutton, a').click(function(event) {
    $(this).val('Loading.. Please wait');
    $('#loading').show();
    setTimeout(function() {
        $('#myform').submit();
    }, 200);
  });
});

答案 1 :(得分:-2)

您只需将<a>添加到提交按钮的选择器,例如

$('div.submitbutton a').click(function.....