我想從外部文件將HTML-Blocks附加到我的網站中。該文件位於我的服務器上,幷包含列表條目的藍圖。當用戶搜索某些內容時,結果應該附加一個循環,並用來自外部HTML文件的代碼顯示。將HTML數據從另一個文件附加到div
這是我的頁面的結構:
主要頁面
<div id="content">
// Display List elements here
<div>
我的jQuery代碼
$.('#search-btn').click(function(){
getElements();
});
function getElements(){
// Getting elements from server and saving the in the variable data
for(var i = 0; i < data.length; i++){
// Append the Elements to the div with id="content"
}
}
藍圖的元素,不同勢HTML文件
<div class="element">
<p class="show_name"></p>
<p class="show_email"></p>
<p class="show_birthday"></p>
</div>
所以,我需要將多個藍圖追加到主頁的content-div。 關於如何使用JQuery實現這個任何想法? :)
你看看jQuery.ajax嗎? –
like @LS_ᴅᴇᴠ表示使用ajax會做的伎倆,你可以將HTML追加到div。 –
我會使用Angular代替,並使用routeProvider將內容注入頁面上的div –