如何在页面加载时禁用.change函数

时间:2013-09-26 15:23:57

标签: javascript jquery jquery-ui

在我的$(document).ready()函数中,我有一个.change事件绑定到一组或单选按钮。但是,如果用户提交的表单上存在错误,则页面将使用用户选择的值重新加载。这导致每次加载页面时都会触发单选按钮.change功能,我不希望它这样做。我该怎么禁用它?

修改

这是完整的功能,之前没有发布,因为它现在正处于中间的热点,并且正在努力保持这篇文章的可读性。

仅供参考 - 如果用户提交表单后出现错误,那么我需要页面加载表单,就像用户点击提交按钮时一样。由于我们根据单选按钮选择显示了一组divspan元素,因此我使用了trigger('change')方法。有没有办法检测页面加载期间是否正在进行操作?

    $('input[name=TransactionType]').change(function (e) {
        //Clear any messages from previous transaction
        $('.error').text('');
        $('.success').text('');

        //Display fieldset Submit and Cancel(back to search) link
        $('#PageDirection').show();
        $('#AgentInformation').show();

        //Display input fields
        var radioValue = $(this);

        if (radioValue.attr('id') == "Enroll" || (radioValue.attr('id') == "ModT")) {
            //Enable and disable input boxes
            $('span').not('#AllInput').hide();
            $('#AllInput').show();
            $('#PayFrequency').show();
            $('#refNumberInput').show();

            //Set tooltips
            $('#AccountType').removeAttr("title");
            if (radioValue.attr('id') == "Enroll") {
                $('#PaymentFrequency').removeAttr("title");
                $('.req').show();
                $('#refNumberInput').show();
                $('#enrollNote').show();
            } else {
                $('#PaperStatement').show();
                $('#PaymentFrequency').attr("title", "Select the frequency to pay the distributor");
                $('#refNumberInput').show();
            }
        } else if (radioValue.attr('id') == "New") {
            $('span').not('#NewMessage').hide();
            $('#NewMessage').show();
            $('.req').show();
            $('#refNumberInput').show();

        } else if (radioValue.attr('id') == "ModA") {
            $('#AllInput').show();
            $('#AgentIdSpan').show();
            $('.req').show();
            $('#UnenrollMessage').hide();
            $('#NewMessage').hide();
            $('#PayFrequency').hide();
            $('#PaperStatement').hide();
            $('#refNumberInput').show();
            $('#AgentId').attr("title", "Enter the Agent ID to be modified");

        } else if (radioValue.attr('id') == "Clone") {
            $('span').not('#AgentIdSpan').hide();
            $('#AgentIdSpan').show();
            $('.req').show();
            $('#AgentId').attr("title", "Clone EFT onto this Agent ID");

        } else if (radioValue.attr('id') == "Unenroll") {
            $('span').not('#UnenrollMessage').hide();
            $('#UnenrollMessage').show();
            $('.req').show();
            $('#refNumberInput').show();

        }

        if (radioValue.attr('id') != "Clone") {
            $('.alwaysReq').show();
        };
    }).filter(':checked').trigger('change');

3 个答案:

答案 0 :(得分:0)

如果您不关心自动完成,可以将autocomplete="off"放在form上。您还可以将当前字段值与defaultValue进行比较,以查看它是否由浏览器自动填充。

答案 1 :(得分:0)

你可以在jquery ready函数中使用“on”或“delegate”。 像这样:

   $(document).delegate("input[name=TransactionType]","change", function(){
        $('.error').text('');
        $('.success').text('');
   });

答案 2 :(得分:0)

document.ready通常不会调用更改函数。只有在您手动更改复选框或同一事件受其他功能影响时才会调用它,但不会在document.ready中调用。

请删除.trigger('change')方法,因为它会触发document.ready

上的更改方法