jquery show()/hide() problem in Internet Explorer?

前端 未结 3 1466
有刺的猬
有刺的猬 2020-12-20 16:37

The following html code works in Firefox, but for some reason fails in IE (Label2 is not shown). Is that a bug or I miss something?

Any help would be appreciated.

相关标签:
3条回答
  • 2020-12-20 17:15

    Remember that the onchange event is triggered after you check the checkbox and then leave the checkbox. Did you try checking it, then clicking somewhere else on the document?

    You may want to employ the click and keypress events in jQuery instead (for checking the box via click and spacebar).

    <sidequestion>Is there any reason you're declaring/defining a function within your document ready paragraph, rather than outside of it?</sidequestion>

    One more edit; may I recommend this sleeker code:

    jQuery(document).ready(function(){
        $("#g_1").hide();
        $("#check").change(function() { $("#g_1").toggle(); });
    });
    
    0 讨论(0)
  • 2020-12-20 17:22

    Cause:

    Per MSDN, the change event is

    ...fired when the contents are committed and not while the value is changing. For example, on a text box, this event is not fired while the user is typing, but rather when the user commits the change by leaving the text box that has focus.

    Behavior for checkboxes is similar: in IE the event does not fire until focus is removed from the element (try it: click then tab off of the checkbox and behavior is as expected). Firefox apparently does not respect this distinction.

    Solution:

    Use the click event handler instead of change:

                $("#check").click(setVis);
    

    ...and behavior should be consistent across browsers.

    0 讨论(0)
  • 2020-12-20 17:28

    Change the .change event to .click event. the result in both browser is the same. in IE when you click the checkbox, blur didn't occur.

    0 讨论(0)
提交回复
热议问题