赞
踩
$.ajax({ type:"post", url:"book?action=stock", data: {"book_name":book_name, "book_stock":book_stock}, dataType:"text", success:function(data){ var d = data.toString(); if(d != '0'){ alert('入库成功'); //平时都是使用这种方式跳转,但在ajax里面这种方式只会刷新一下当前界面,没有办法跳转新界面 // window.location.href("index.jsp"); //将跳转方式换成下面这种就可以完成跳转 $(window).attr("location","index.jsp"); }else{ alert('该图书不存在于库中'); } }, error:function(){ alert('新增失败') } });
因为location是js的原生跳转的方法,而ajax是经过封装的jQuery,所以我们要用jQuery中的跳转方法才能生效
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。