//文字大小切换 function fontzoom(size) { document.getelementbyid('con').style.fontsize=size+'px'; } //读取详细内容 (function($){ $.fn.getcontent = function(newsid,newspageid){ $.ajax({ type: "post", url:pdv_rp+"news/post.php", data: "act=getcontent&newspageid="+newspageid+"&newsid="+newsid+"&rp="+pdv_rp, success: function(msg){ $("#con").html(msg); $("#con").find("img").each(function(){ if(this.offsetwidth>600){ this.style.width="600px"; } }); $().setbg(); } }); }; })(jquery); //详情图片尺寸处理 $(window).load(function(){ $("#con").find("img").hide(); var w=$("#con")[0].offsetwidth; $("#con").find("img").each(function(){ $(this).show(); if(this.offsetwidth>w){ this.style.width=w + "px"; $().setbg(); } }); });