首页 > 代码库 > thinkphp 点击某个class提交post值,返回回来用一个弹窗插件,提示返回来要说的话
thinkphp 点击某个class提交post值,返回回来用一个弹窗插件,提示返回来要说的话
下一篇文章有讲到弹窗插件的怎么使用,自写教程 如果能帮到你,给点个赞鼓励一下
《============= 控制器 =================》
public function index(){ $uid = session(‘uid‘); if($uid <= 0){ $url = "/Home/User/login.html"; echo ‘<script type="text/javascript">alert("跳转登录!");window.location.href = "http://www.mamicode.com/‘.$url.‘"; </script>‘; //另一种方法 $this->error(‘请先登陆,马上跳转‘); } $this->display(); } 《============= 模板 =================》 a class="nav-a geren " href="javascript:;"> <div class="icon"><img src="http://www.mamicode.com/__PUBLIC__/picture/footer-nav5.png" /></div> <p>个人中心</p> </a> 《============= js =================》 <link rel="stylesheet" type="text/css" href="http://www.mamicode.com/__PUBLIC__/css/gwc/layer.css"> <!--弹窗必须引用的 js--> <script type="text/javascript" src="http://www.mamicode.com/__PUBLIC__/css/gwc/layer.js"></script><!--弹窗必须引用的 css--> <script> $(‘.geren‘).click(function(){ var url = "{:U(‘Geren/index‘)}"; $.get(url,‘‘,function(v){ if(!v.status){ layer.open({ content: v.info //判断哪个值没填写 ,skin: ‘msg‘ ,time: 3 //3秒后自动关闭 }); setTimeout(function(){ location.href="http://www.mamicode.com/{:U(‘User/login‘)}"; },1200); }else{ iocatron.href="http://www.mamicode.com/{U(‘Geren/index‘)}"; } }) }) </script> window.history.back();//记忆谁请求的的此页面,后台传过来$this->success();此方法,就是已完成,然后再跳转到记忆谁请求的页面 location.reload();后台传过来$this->success();此方法,就是相当于true,在当前页面刷新
thinkphp 点击某个class提交post值,返回回来用一个弹窗插件,提示返回来要说的话
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。