<script language="JavaScript">
function Expand(el) {
childobj = document.getElementById("child" el);
if (childobj.style.display == 'none'){
childobj.style.display = 'block';
}else {
childobj.style.display = 'none';
}
return;
}
</script>
<div>
<foreach name="auth_infoA" item="v">
<table>
<tr>
<td>
<a onclick="expand('{$v.auth_id}')" href="javascript:void(0);">{$v.auth_name}</a>
</td>
</tr>
</table>
<table id="child{$v.auth_id}" スタイル="display: none">
<foreach name="auth_infoB" item="vv">
<ifcondition=" $vv.auth_pid heq $v.auth_id ">
<tr>
<td>
<a href=" " target="right">{$vv.auth_name}< ;/a>
</td>
</tr>
</if>
</foreach>
</table>
</foreach>
</div>
使用されるのは tp3.2.3 です、これはフロントエンドです代,我想跳转到右,但是我不知道那个路劲怎么去写他(<a href=" " target="right">{$vv.auth_name}</a>),大神们
これが問題の写真です
左側のメニューの役割管理をクリックすると、右側にジャンプします 具体的なリンクの貼り方が分かりません
&lt; a href = "" "ターゲット=" right "&gt; {$ vv.auth_name}&lt;/a&gt;
<a href="{:U('Index/index')}" target="right">{$vv.auth_name}</a>
これでよろしいですか? Indexはファイル名(クラス名)、indexはメソッド名です