我做了一個返回json數據的ajax調用,告訴我要加載什麼html模板以及填充模板所需的數據。如果我在ajax調用之外加載模板,數據填充很好,但是如果我嘗試並在ajax調用中加載html,我看到html元素已加載,但我無法填充它們。將動態數據加載到動態元素中
$.ajax({
type: "POST",
url: "http://some-url/items-json/item_data.json",
dataType: "json",
async: true,
success: function(data) {
// template_name will be an html file like template_10.html
// #player-template is the div id i want to load it into
$('#player-template').load(data.template_name);
// these elements get created from the dynamic template that gets loaded above
$('#ques_intro').html(data.ques_intro);
$('#question').html(data.question);
}
});
這完美地工作!非常感謝! – user1916500
@ user1916500請記住標記爲答案.. :) – PSL