jQuery
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery("#stallId").change(function(e){
//prevent default action
e.preventDefault();
jQuery.ajax({
url: "getProducts.html?method=Product&stallId="+document.getElementById("stallId").value,
dataType: "json",
success: function(json){
if(json.status == true){
var strHtml='';
strHtml=+"";
for(var i=0;i<json.promotionProductList.length;i++){
}
}
},
failure: function(){
alert( "FAILED" );
}
});
});
});
显示标签
<display:table name="ProductList" id="product" class="table" export="false">
<display:column escapeXml="true" titleKey="productForm.name">
</display:column>
</display:table>
在行动课
Map productMap = new HashMap();
productMap.put("id", "1");
productMap.put("name", "Coca Cola");
List<Product> productList = new ArrayList<Product>();
productList.add(productMap);
jsonWriter.object()
.key("status").value(true)
.key("pList").value(productList)
.endObject();
如何使用ajax在显示标签中加载json数据?当我从下拉列表中选择一个档位时,它将 URL 发送到后端操作类并能够获取产品地图列表,但我不确定如何使数据显示在显示标签中。有人可以帮助我并告诉我如何加载数据吗?顺便说一句,我正在使用 struts 1。