通常,如果我想在单击链接时调用函数,我会这样做:
$('a').click(function() {
//stuff
});
但是,即使新添加了元素,我也需要调用此函数。例如,
$('a').click(function() {
//stuff
});
$(document.body).append($('<a href="http://example.com">This is an example</a>'))
//now when I click that example link, the function isn't called!
如何制作适用于所有链接的功能?我无法控制添加新链接的代码,所以我不能在添加新链接onclick
时设置它。