$(document).ready(function(){
var links = $('body').find('a.internal');
links.on('click', function(e){
//pull page with ajax and replace the content with this response
//replace current links, as some are added from ajax response
links = $('body').find('a.internal');
e.preventDefault();
})
});
我猜因为只有一个links.on()
当文档准备好时只有一个被调用,它永远不会“更新”任何可能创建的新链接。在我的 ajax 调用之后,我将如何重置这个活页夹?
感谢您及时的回复。那成功了!