gpt4 book ai didi

jQuery On 函数用于 future 元素?

转载 作者:行者123 更新时间:2023-12-03 21:38:33 25 4
gpt4 key购买 nike

$("#dataTable tbody").on("click", "tr", function(event){
alert($(this).text());
});

此语法适用于页面上已有的 tr 吗?

如果不是, future tr 元素的语法是什么?

最佳答案

对于 #dataTable tbody 内的 future 元素,你的代码应该可以工作。将单击一直委托(delegate)给文档,从而允许将来使用相同的处理程序 <tr>在页面上的任何位置,尝试:

$(document).on("click", "tr", function(event){
alert($(this).text());
});

关于jQuery On 函数用于 future 元素?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8431073/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com