在asp页面中使用jquery在表单完成时启用或禁用提交按钮

时间:2013-01-07 07:41:24

标签: jquery css asp-classic

在asp页面中使用jquery启用或禁用表单完成时的提交按钮。 我想在用户填写所有必填字段时启用按钮并更改我的asp页面上的按钮类 请帮助我,我找到了很多代码,但即便是我的工作 请帮我 我试过了

(function() {
    $('form > input').keyup(function() {

        var empty = false;
        $('form > input').each(function() {
            if ($(this).val() == '') {
                empty = true;
            }
        });

        if (empty) {
            $('#register').attr('disabled', 'disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
        } else {
            $('#register').removeAttr('disabled'); // updated according to http://stackoverflow.com/questions/7637790/how-to-remove-disabled-attribute-with-jquery-ie
        }
    });
})()

0 个答案:

没有答案