thinkphp中的url跳转用法分析
本文实例分析了thinkphp中的url跳转用法。分享给大家供大家参考,具体如下: 最先想到的是a标签里面的target属性,_blank时,可以在新的lab窗体中打开新的页面 但是现在要在php文件里面跳转, $this->redirect('/Supperman/outerMan'); $this->display('Supperman:outerMan'); 这两者都只是在当前页面打开新的页面 然后又试了一下: header('Location:'.U('/Supperman/outerMan').'',false); 还是不能满足效果。使用js: echo "<scri
用户评论