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.
アンカー タグを Dom に追加した後、クリック イベントをバインドします。
$('#empList a').bind("click", function (e) { alert("inr"); });
onを使用して、ダイナミック リンクのクリックを実行できます。以下のコードを見てください:
$('body').on('click', '#empList a', function() { alert("inr"); });