Rebinding events in jQuery after Ajax update (updatepanel)

后端 未结 9 2138
悲哀的现实
悲哀的现实 2020-11-27 10:15

I have several input and option elements on my page, each (well almost) have an event attached to update some text on the page once they change. I use jQuery which is really

9条回答
  •  爱一瞬间的悲伤
    2020-11-27 10:50

    Sys.Application.add_load(initSomething);
    function initSomething()
    {
      // will execute on load plus on every UpdatePanel postback
    }
    

提交回复
热议问题