combo box is getting vanished when an alert is coming

后端 未结 2 1649
遇见更好的自我
遇见更好的自我 2020-11-30 15:30

In my jsp page i have one text box and two combo box. An alert is coming in my jsp page when i am writing something in the textbox. Alert is coming as \"username already exi

2条回答
  •  有刺的猬
    2020-11-30 16:15

    Its all ok with your code. When i started debug you code i saw some interesting thing in alertbox.js: (line 141 and 178)

      if (!$.support.maxHeight) { //IE6
                  $('embed, object, select').css({ 'visibility' : 'hidden' });
      }
    

    This code detect ie6(if read a comment) but seems its buggy.

    Just comment these lines and your problem will be solved.

    And don't forgot to post this bug! Good luck. And start use debugger :)

提交回复
热议问题