摘要: function IsExist(url,method) { $.ajax({ url: url, type: 'GET', complete: function(response) { if(response.status == 200) { method(true); } else { method(false); } } }); } function windowopen(url){ IsExist(url,function(check){ ... 阅读全文
posted @ 2014-03-25 17:02 bluen 阅读(540) 评论(0) 推荐(0)