function initimg() { for(var i=0;i<$(".weibo_img").length;i++) { if($(".weibo_img").eq(i).height() / $(".weibo_img").eq(i).width() <= 0.75) { $(".weibo_img").eq(i).width($(".weibo_img").eq(i).width()>200?200:$(".weibo_img").eq(i).width()); } else { $(".weibo_img").eq(i).height($(".weibo_img").eq(i).height()>150?150:$(".weibo_img").eq(i).height()); } } } function closediv_img() { $(".closediv_img").click(function(){ $(this).parent().parent().parent().parent().find(".img_div").hide(); $(this).parent().parent().parent().parent().find(".weibo_img").show(); }); $(".weibo_div_img").click(function(){ $(this).parent().parent().parent().find(".img_div").hide(); $(this).parent().parent().parent().find(".weibo_img").show(); }); } function imgclick() { $(".weibo_img").click(function(){ $(this).parent().parent().find(".weibo_img").hide(); $(this).next().show(); }); } function msg(content,url) { $.messager.alert("Info",content,"info",function(){ if(url=="") {window.location.replace(location);} else if(url=="me") {} else {window.location.replace(url);} }); }