frameset分幀問題
阿新 • • 發佈:2017-07-22
avatar frame use public href mes spa main 代碼
最近接手一個項目後臺是用分幀寫的,分三塊top,left,main.點擊退出的時候只有top塊退到登錄頁了.其他兩塊還在.
top裏的退出是
<div class="top-l">
<img src="__PUBLIC__/Admin/images/avatar.png" width="44" height="44" />
<span>歡迎您:{$username}</span>
<a href="{:U(‘Public/logout‘)}" >退出</a>
</div>
這個時候就想怎麽能把整個頁面都退到登錄頁呢.上網查了下,可能表達的不準確沒找到結果.記起以前做過分幀也是碰到過這樣的問題.就倒騰出以前的代碼
發現herf後面加上了target="_top".就可以了.
<div class="top-l">
<img src="__PUBLIC__/Admin/images/avatar.png" width="44" height="44" />
<span>歡迎您:{$username}</span>
<a href="{:U(‘Public/logout‘)}" target="_top">退出</a>
</div>
完美解決問題.剛才搜了下target="_top",就是跳出框架.各種答案都出來了.還是關鍵詞沒搜對.不管了,自己先記下來;
frameset分幀問題