在tp框架下,使用iframe框架时,退出跳转的写法

时间:2023-01-30 23:24:16

1.这是iframe 框架

<\frameset rows="50px,*,50px" frameborder="1" border="0" noresize="noresize"> 

 <\frame name="top" src="{:U('User/top')}"/> 

 <\frameset cols="250px,*"> 

        <\frame name="left" src="{:U('User/left')}"/> 

        <\frame name="right" src="{:U('User/right')}" /> 

 <\/frameset> 

 <\frame name="bottom" src="{:U('User/bottom')}"/>

<\/frameset>

2. 下面的是left.html 里面的一个li

<\a href="{:U('BankAccount/index')}" target="right"><\li><\span class="glyphicon glyphicon-credit-card">  银行账户

3. 这是退出的方法

public function do_out(){

            unset($_SESSION['uid']);
            $this->assign('jumpUrl',"javascript:window.open('/','_parent');window.close();");
            $this->assign('waitSecond','1');
            $this->error="登录超时,请重新登录";
            $this->display(C('TMPL_ACTION_SUCCESS'));

            //$this->redirect('Index/index');  这样写只会在中间部分显示,不会整个框架退出显示
    }