Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用由活动监视器生成的小订阅 btn,我想使用 $("button").click(); 触发点击它。像这样
$(document).on("click", ".trigger-cm", function(){ $("button").click(); });
显然这不起作用,因为“按钮”是在事后加载的,那么我如何使用 jquery 访问它呢?
多种方式中的两种
之前加载按钮并在 ajax 调用传入时使其可见。
当 Ajax 调用传入时添加您的按钮,例如:
var btn = $('button>Text.... /button>'); //生成按钮
btn.click(function(){ ... }); //设置监听
$("body").append(btn); //将按钮添加到页面或元素