connect
作者
作者 2019-04-12 19:13:39
0
6
800

Excuse me, how can I jump from the character list on the left to the one on the right? What exactly should be put in href="". I'm a novice, I just learned the framework, and I don't understand it very well.

作者
作者

reply all(2)
作者

Inked_EJJ(XZAZQMA7_MK~I}EKJG_LI.jpg

{$vv.auth_name}I don’t know how to put the link inside, so you can understand

Peter-Zhu

I don’t quite understand what you want to ask? Please upload the code and have a look

  • reply Can you see the next reply, the picture on the right inside. <a href="" target="right">{$vv.auth_name}</a>I don’t know how to put the link inside, can you understand it?
    作者 author 2019-04-13 12:15:29
  • reply Why can't I put the code? <a href="" target="right">{$vv.auth_name}</a>
    作者 author 2019-04-13 12:16:32
  • reply <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> <body> <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}" style="display: none"> <foreach name="auth_infoB" item="vv"> <if condition=" $vv.auth_pid heq $v.auth_id "> <tr> <td> <a href=" " target="right">{$vv.auth_name}</a> </td> </tr> </if> </foreach> </table> </foreach> </div> </body> I used tp3.2.3 to do it. This is the front-end code. I want to jump to right, but I don’t know how to write it. Can you simulate it for me? I just learned it and there are still too many I don't understand, please help me if you can. Thank you
    作者 author 2019-04-15 15:28:05
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!