Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是写了一个 php 文件,然后我把它放在网站的文件管理器中,这样你就可以使用这样的 url 访问它:http ://www.eatwizard.com/project081113/ ... select.php
现在我在主页面的菜单中创建了一个链接,我想将页面传递到大型机(到模板的位置),而不是在新选项卡中打开链接,任何关于如何更改的想法它?谢谢!!!!
您应该使用标签的“目标”属性。
句法 :
<a target="_blank|_self|_parent|_top|framename">
在您的情况下,请指定目标框架名。
例如 :
<a target="my_rightupper_frame" href="http://....." >Here's a link</a>
查看详情:http ://www.w3schools.com/tags/att_a_target.asp