如何在一个提交的HTML中打开两个页面?

时间:2015-10-10 04:23:40

标签: html css forms

嘿,我想问一下html。如何一键打开表单动作打开2页? 我只是尝试两个动作,但从不工作,在这里我用来制作形式:

<form action = "http://www.google.com" method = "get" target = "_blank"> 

这是我用来在提交时打开谷歌,但如何在一次提交中打开2个网站或页面?

我尝试这样做不起作用

<form action = "https://www.google.com" action="https://www.facebook.com" method = "get" target = "_blank"> 

对不起我只是新手,但请帮我查一查。

非常感谢

3 个答案:

答案 0 :(得分:0)

试试这个

<a id="test" href="#"> CLick </a>
<script type="text/javascript">

  document.getElementById("test").onclick = function(){
   window.open("http://www.google.com",'_blank');
   window.open("http://www.p3php.in",'_blank');
}
</script>

答案 1 :(得分:0)

在表单中添加action property,您必须提供指向HTML页面的链接。

然后提交按钮添加onclick property并提供指向要在新窗口中打开的其他页面的链接。

form action="/link/of/your/first/html/page"<br/>
 <!--content--> 
input type="submit" onclick="window.open('/link/of/second/html/page','other_window')

希望这是完全的帮助。

答案 2 :(得分:0)

通过将输入类型更改为密码 例如::

<input type = "password" name = "pass" placeholder="Password" size = "8">

隐藏密码字段