$(function() { //检查是否登录 if($("#bookstaus").length>0) { $.ajax( { type:"post", cache:false, url:webroot+"plug/book.asp?act=islogin", error:function(){}, success:function(_) { $("#bookstaus").html(_); } }); } }) $(function() { $(".form_book").validator( { stoponerror:true, theme:'yellow_right_effect', ignore:':hidden', valid:function(form) { $.fn.tips({type:'loading',content:'数据提交中'}); $.ajax( { url:webroot+"plug/book.asp?act=add", type:"post", data:$(form).serialize(), success:function(data){ data=jquery.parsejson(data); $.fn.tips.close(); if(data.status=="y") { var info=data.info.substring(1); $.fn.tips({type:"ok",content:info}); $(".form_book")[0].reset(); if(data.info.substring(0,1)==2){ if ((webmode=="2")||(webmode=="4")){ settimeout(function(){location.href = webroot + 'plug/book.html';},1500) }else{ settimeout(function(){location.href = '?';},1500) } } }else{ $.fn.tips({type:"warn",content:data.info}); } } }); } }); // })