开发者

how to select multiple rows using jquery

开发者 https://www.devze.com 2023-02-15 16:34 出处:网络
hello everyone how to select multiple cell from table using jquery . i dont want to use any plugin fo开发者_如何学Pythonr this.

hello everyone how to select multiple cell from table using jquery . i dont want to use any plugin fo开发者_如何学Pythonr this. i have to two tables which are dynamically generated.


try jQuery Delegate for dOM using parent selector

Description: Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements.


Apply a common class to the rows, for example class="myclass", then in jQuery:

$("myclass").dosomething;

Make sense?

0

精彩评论

暂无评论...
验证码 换一张
取 消