Does JQueries Live Work in IE8?

后端 未结 3 1552
难免孤独
难免孤独 2021-01-14 00:42

I am making use of the JQuery fancy box - in this pop up box I have a form with a few select fields and upon changing these slect fields a value in a span element should cha

相关标签:
3条回答
  • 2021-01-14 01:24

    jQuery live does work in IE8, but the live handlers don't support the change event.

    Possible event values: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup

    Currently not supported: blur, focus, mouseenter, mouseleave, change, submit

    0 讨论(0)
  • 2021-01-14 01:39

    Live also not support paste event Handler hence use bind

    0 讨论(0)
  • 2021-01-14 01:44

    live does not support the change event. From the manual:

    Possible event values: click, dblclick, mousedown, mouseup, mousemove, mouseover, mouseout, keydown, keypress, keyup
    Currently not supported: blur, focus, mouseenter, mouseleave, change, submit

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