如何在新窗口中打开一个功能?或新标签?

时间:2010-04-03 09:59:18

标签: html

我通过点击按钮调用我的控制器中的一个功能.... 我希望在新窗口中打开该功能,我们如何才能获得

例如: 现在我的网址是

http://localhost/codeigniter_cup_myth/index.php/adminController/adminDegree

点击按钮我在adminController中调用函数degreechk

我想要网址

http://localhost/codeigniter_cup_myth/index.php/adminController/degreechk

在新窗口中打开 如何在新窗口中获取新网址

1 个答案:

答案 0 :(得分:1)

只有在提交表单时才需要在“查看”页面上处理它。在表单标记中添加属性 target =“_ blank”。例如: -

<form id="search" action="/search" method="get" target="_blank">
  <input name="q" class="textbox" tabindex="1" onfocus="if (this.value=='search') this.value = ''" type="text" maxlength="80" size="28" value="search">
  <input id="submit-button" type="submit" value="Post Your Answer" tabindex="110">

</form>