我通过以下方式从 jquery 发送部分 html 代码
htmlCode1 = "<div class='txt_center'>\
<input type='button' class='btn_view b widthauto' value='Add' name='addShortlist'\ style='cursor:pointer;'";\
htmlCode1 += " id=add"+this.id+" >\
</div>";
在这里,我在 html 中分配了一个 id 和一个名称,并希望在单击这些 id 时执行某些功能,但不知何故我的 onclick 功能没有被执行。解决方案是什么?
我将 onclick 函数称为:
$("[name='addShortlist']").click(
function()
{
alert("here");
return false;
}
);