当前位置: 代码迷 >> Ajax >> jquery .append().html() IE不兼容
  详细解决方案

jquery .append().html() IE不兼容

热度:1227   发布时间:2012-02-02 23:57:14.0
jquery .append().html() IE不兼容 - Web 开发 / Ajax
JScript code
function loadSearItemF()
{ 
    $("#goangying_ul li").remove();
    var queryString = location.href.substring(location.href.indexOf("?") + 1);
    $.getJSON("../Handler/SupplySearchHandler.ashx?action=SegmentationSearCondition&"+queryString+"&t=" + new Date()+"&comuln="+column, function(data){
    $.each(data.pro, function(i, item){
    var li=$("<li>").append($("<a target=\"_blank\" class=\"vip2\" href=\"http://zyqc.cc/WebShops/SupplyDetail/zengqingjun/430845\">").html("<img class=\"supply_grid_img\" border=\"0\" style=\"width: 100px; height: 72px;\"  src=\"http://pic.zyqc.cc/Home/GetThumbnailEx/!_UploadFiles!_20110922!_151932193!-jpg/100x72__.jpg\" alt=\"供应"+(item.name)+"\"/>"));
    li.attr("class","o");
    $("#goangying_ul").append(li);
      });
      });
}


------解决方案--------------------
你自己都知道不兼容。。。就换别的呗。。
------解决方案--------------------
全部html都放在append里面不就可以了。
  相关解决方案