我创建了动态 html 按钮,我想为它们设置点击事件。这是我的 html 输出和代码:
<td style="width:90px;">
<input type="button" class="btn_Yeni" id="btnYeni"></td>
$(".btn_Yeni").on("click", function () {
alert('asd');
});
$(".btn_Yeni").trigger("click");
单击按钮后没有任何反应。你有什么建议吗?