1

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。

4

1 回答 1

1

在我使用firebug检查显示标签部分后,我发现显示标签将变为普通的html表格。所以在ajax中:

success: function(json){
    if(json.status == true){
        var strHtml='';                
        for(var i=0;i<json.pList.length;i++){
        strHtml+='<tr><td>'"+json.pList[i].name+"'</td></tr>';  
        }
    jQuery("table#product tbody").html(strHtml);
    }                   

},

在 jQuery("table#product tbody") 中,"table" 是指显示表标签,#product 是指显示表 id。

于 2013-08-28T05:32:53.327 回答