日期:2014-05-16 浏览次数:20751 次
function checkPopup(ev, title, url, width, height) {
ev.preventDefault();
if(url.indexOf("?") == -1){
url += "?";
}
url += "&random=" + (new Date().getTime());
//以iframe方式弹出层
//url += "&random=" + (new Date().getTime()) + "&&TB_iframe=true";
//tb_show(title, url, false);
$.ajax({
url: url,
async: false,
success: function(data, status, xhr) {
if (data.indexOf("loginWrap") == -1) {
TB_WIDTH = width * 1 || 630;
TB_HEIGHT = height * 1 || 440;
tb_show(title, '', false);
$("#TB_ajaxContent").html(data);
}
else {
location.href= "";
}
}
});
}