0
所以我有一個ajax表結果,它有標籤鏈接,允許您編輯條目。jquery live - 啓動一個fancybox iframe
目前的鏈接看起來像這樣<a href="edit.php?id=$id">Edit Entry</a>
我想要做的就是在燈箱打開edit.php和發送ID,因此,它是AJAX我使用實況()函數來啓動燈箱/
$("a.edit").live('click',function() {
//fancy box code goes here, open edit.php?id=$id
});
感謝