javascript+ajax实现产品页面加载信息

js

//加载页面

//加载产品列表
function GetProductList() {
  function PostParam(param) {
    param.key = "lm324";
    return param;
  }
  var PostExecParam = {
    ClassName: "AnxinE.BLL.Product.ProductInfoBLL",
    MethodName: "Search",
    ParamModelName: "AnxinE.Model.Product.ProductInfoParam",
    onRequest: PostParam,
    onResponse: function (result) {
      if (result != null) {
        var html = "";
        //汇率判断
        //" + (result.SupplierProductList[i].ProductList[j].PriceUSD.toString() == '0' ? 1 : result.SupplierProductList[i].ProductList[j].USDPriceList[0].MinQuantity) + ":" + result.SupplierProductList[i].ProductList[j].PriceUSD + "
        //展示搜索-产品信息列表
        for (var i = 0; i < result.SupplierProductList.length; i++) {
          for (var j = 0; j < result.SupplierProductList[i].ProductList.length; j++) {
            //if (result.SupplierProductList[i].ProductList[j].PriceUSD!=null) {
            //}
            html += "" + result.SupplierProductList[i].ProductList[j].Model + "" + result.SupplierProductList[i].ProductList[j].Manufacturer + "" + (result.SupplierProductList[i].ProductList[j].Quantity) + "" + result.SupplierProductList[i].ProductList[j].ShipDays + "" + result.SupplierProductList[i].ProductList[j].MinOrderQuantity + "+" + result.SupplierProductList[i].ProductList[i].DeliveryPoint + "" + result.SupplierProductList[i].ProductList[j].PriceUSD + "" + result.SupplierProductList[i].ProductList[j].PriceCNY + "加入购物车
"; } } //展示搜索--品牌列表 var html2 = "

全部

"; if (result.ManufacturerList.length > 0) { for (var i = 0; i < result.ManufacturerList.length ; i++) { if (result.ManufacturerList[i].KeyName != null) { if (i < 5) { html2 += "

" + result.ManufacturerList[i].KeyName + "

"; } } } //
收回 html2 += "更多+"; } //不删除第一个内容,将产品信息表追加 $("#r2_text2").not($(".cur1")).empty(); $("#r2_text2").append(html2); //改写品牌行 $(".tr3").empty(); $(".tr3").append(html); } } }; $.ajaxRequest(PostExecParam); };

.cshtml

型号:

品牌:

全部

FTDI

WIINET

3M-STATIC CONTROL SOLUTIONS

AAVID THERMALLOY

ALLIANCE

更多+

库存数量:

-

交货地:

全部

国内

香港

型号

品牌

库存数量

货期

起订量

交货地

香港交货

国内交货

操作

(工作日)

(含17%税)

以上所述就是本文的全部内容了,希望大家能够喜欢。

你可能感兴趣的:(javascript+ajax实现产品页面加载信息)