jQuery .change()事件没有在IE中触发

时间:2012-03-29 08:13:31

标签: javascript jquery jquery-ui

我有一个对话框,执行依赖于三个输入字段的计算。当其中任何一个被更改时,它会检查它们是否全部被填充,如果它们是进程并给出响应。

它在FF,Chrome,Opera等中运行得非常好,但在任何版本的IE中它都会停止工作。我的其余jQuery工作正常,但我无法确切地解决问题所在。我认为这可能与.change()事件或多事件绑定有关,但我真的不知道。

以下是有问题的代码:

var loan = $("#ltv-loan-amount");
var mortgage = $("#ltv-mortgage");
var property = $("#ltv-property");

$("#ltv-dialog input").change( function() {
    if(loan.val() && mortgage.val() && property.val())
    {
        var ltv = parseInt( ( ( parseInt(loan.val()) + parseInt(mortgage.val()) ) / parseInt(property.val()) )* 1000 );
        ltv /= 10;
        if(ltv > 0 && ltv < 85)
        {
            $("#ltv-result").html("<span id=\"ltv-form-result\">" + ltv + "%</span></p><p><a id=\"ltv-link\" href=\"#sidebar-head\">Congratulations, your LTV has passed. Please now proceed with your application opposite.</a>");
            $("#amount").val(loan.val());
            $("#mortgage_balance").val(mortgage.val());
            $("#prop_value").val(property.val());
            $("#ltv-link").click(function() {
                $( "#ltv-dialog" ).dialog( "close" );
            });
        }
        else if (ltv > 84)
        {
            $("#ltv-result").html("<span id=\"ltv-form-result\">" + ltv + "%</span></p><p>Unfortunately your LTV is greater than 85%. You may still qualify for a loan if you reduce the loan amount.");
        }
        else
        {
            $("#ltv-result").html("</p><p>Please check your input above as you currently have a negative ltv.");
        }
    }
});

和有问题的HTML:

<div id="ltv-dialog" title="Do You Qualify for a Loan?">
    <p>Please enter the fields below and your LTV will be calculated automatically.</p>
    <div id="ltv-form">
        <div class="ltv-row">
            <label for="ltv-loan-amount">Loan Amount:</label>
            <input type="text" name="ltv-loan-amount" id="ltv-loan-amount" class="p000" />
        </div>
        <div class="ltv-row">
            <label for="ltv-mortgage">Mortgage Value:</label>
            <input type="text" name="ltv-mortgage" id="ltv-mortgage" class="p000" />
        </div>
        <div class="ltv-row">
            <label for="ltv-property">Estimated Property Value:</label>
            <input type="text" name="ltv-property" id="ltv-property" class="p000" />
        </div>
    </div>
    <div class="ltv-row">
        <p>Loan to Value % (LTV): <span id="ltv-result"></span></p>
    </div>
</div>  

更新

更改事件似乎是触发,但仅当文本框从值更改为null时才会触发。

5 个答案:

答案 0 :(得分:9)

在定位文字输入元素时,您是否尝试过使用其他事件?因此,change代替使用keyup而不是$("#ltv-dialog input").keyup( function() {? {{1}}。每次按键后都会触发。

答案 1 :(得分:3)

使用jQuery .on()也可以解决您的问题。像这样使用它:

jQuery("#ltv-dialog").on("change", "input", function(){
     alert("It works !");
     //your javascript/jQuery goes here
   }
);

jsfiddle

答案 2 :(得分:1)

我有同样的问题:以下修复对我有用:

而不是:$("#ltv-dialog input").change( function() {

我用过:$('#ltv-dialog').on('input', function() {

答案 3 :(得分:-1)

使用live函数,通常可以使它工作......

$("#YOURTHING").live("change", function(){

// CODE HERE

});

答案 4 :(得分:-1)

请尝试使用每个而不是更改 / 点击,这在IE和其他浏览器中首次正常工作< / p>

第一次不工作

$("#checkboxid").change(function () {

});

第一次工作正常

$("#checkboxid").each(function () {

});