我有jQuery的崗位操作鏈接:從服務器如何把js鏈接?
$.post('my_url', {
'pid': pid,
'name': $('input#nametxt').val()
}, function(data){
$('#list').append(data);
});
Respose是例如:
<li>My custom name <a href="javascript:add_another('23');">Add another</a></li>
但這種動態添加的鏈接無法使用。如何做得好?
什麼不起作用?你不能點擊鏈接或Javascript函數'add_another'沒有被調用? – Biketire