📅  最后修改于: 2022-03-11 15:01:41.940000             🧑  作者: Mango
$(document).on( 'click', '.classname', function () {
alert('clicked');
});
**** Another Method ****
// where #wrapper is a static element in which you add the dynamic links.
$( '#wrapper' ).on( 'click', 'a', function () { alert('clicked'); });