我已经从 servlet 中检索了一些数据,现在想要输出为 HTML 到名为“showArticles”的 div,并且每个值都有相同的 html 块。但是,它只输出一个值。所以我有:
|Article Title. |
|Article content. |
我希望有很多这样的 html。先感谢您。
阿贾克斯:
$.ajax({
url : "LoadArticlesByTag",
dataType : 'json',
type: 'GET',
data: {
b_sub_tag:option_value
},
error : function(jqXHR, textStatus, errorThrown) {
alert(textStatus);
},
success : function(data){
var data1=data[0], data2=data[1];
for(var i=0;i<data1.length;i++){
outputToDiv(data1,i);
}
}
});
function outputToDiv(data1,i) {
$('#showArticles').html(
"<article class='one_quarter'>"+
"<figure><img src='images/demo/32x32.gif' width='32' height='32' alt=''></figure>"+
"<strong>"+data1[i]["name"]+"</strong>"+
"<p>"+data1[i]["content"]+"</p>"+
"<p class='more'><a href='#'>Read More »</a></p>"
);
}