Home >php教程 >php手册 >ThinkPHP在控制器里的javascript代码不能执行解决方法

ThinkPHP在控制器里的javascript代码不能执行解决方法

WBOY
WBOYOriginal
2016-06-13 09:55:02769browse

thinkphp教程在控制器里的网页特效代码不能执行解决方法
就拿“退出”这一项来说吧。
我的“退出系统”链接是写到左边的框架里的,用js动态生成的。也就是说,没法通过链接里的target来指定。

view sourceprint?1 $this->assign('jumpurl',__url__.'/login');
$this->success("注销成功!");

这样写的话,要跳转的页面就显示在了右框架里了。
把js代码写到url里面不行。
我把这两行代码注释掉了。直接用


view sourceprint?1 echo "<script>window.top.location.href='$url';</script>";


这样也不行,一方面url里面没法用__app__这些常量。另一方面,最后执行出来的结果是竟是把<script>标签去掉,剩下的直接输出!(window.top.location.href='index/login';)<br /> 我查了action类里的success函数,没有找到相关的参数。</script>

 

星期天在朋友那吃饭的时候,突然想到一个问题,tp里的标签都是以尖括号()来包含的,我在控制器里写的<script>是不是被当作标签给解析了呢?于是我就重新写了第二段代码:</script>


view sourceprint?1 echo '<script>alert("退出成功");top.location.href="login";</script>';

这样就行了。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn