如何獲取在頁面加載後異步添加到頁面的li標籤的id。獲取異步生成的li標籤的id
我試過用函數document.ready,但它在加載異步數據之前加載。
例如在我的頁面有一個異步加載的新聞數據&我沒有任何控制權。當用戶點擊新聞鏈接時,它會轉到某個位置,我需要將其更改爲其他位置。
我試過下面的代碼。但它不起作用。
$("a[href*='Pages/results.aspx']").each(function(){
var href = $(this).attr('href').replace('/Pages/results.aspx', window.location.pathname);
$(this).attr("href", href);
});
你是如何加載數據的? –
需要更多輸入! –
我認爲這篇文章可能會幫助你:http://stackoverflow.com/questions/8867194/jquery-on-not-working-with-dynamic-dom-html –