/*function ShowAD(name){ var oXML = new ActiveXObject("Microsoft.XMLHTTP"); oXML.open("GET","http://special.zhaopin.com/dsc/ad/"+name+".html",false); oXML.send(); document.write(unescape(oXML.responseText)); }*/ function ShowAD(strUrl, objID){ $.ajax({ url: "http://special.zhaopin.com/dsc/ad/"+strUrl+".html", dataType: "html", cache: false, beforeSend: function(){/*发送请求前*/ }, complete: function(){/*请求完成后回调函数*/ }, success: function(data, textStatus){ //document.getElementById(objID).innerHTML = data; $("#"+objID).html(unescape(data)); }, error: function(){/*请求出错处理*/ } }); }