Row change event of repeater

前端 未结 2 662
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-29 08:51

I am using C#, ASP.net 3.5

How to capture the row change event of repeater in javascript?

2条回答
  •  伪装坚强ぢ
    2021-01-29 09:48

    You should bind to the change event of items in your row in javascript. The default on_change event of .net does a postback, so you can handle it server side. You can also capture the mouse hover event on the row in javascript and handle the mouseenter en mouseleave methods to update your data or something. See: how to handle row change event of table using jquery?

提交回复
热议问题