从用户的角度来看,是否可以点击按钮并将结果加载到新的标签/窗口中,不会自动。
就像您在某些浏览器中点击某个链接或右键点击一样 - >在新标签/窗口中打开。 你能用按钮做到吗?或者你需要一个浏览器插件吗?
这一切都可能吗?我知道你可以制作自定义按钮等,但这更多是出于好奇。
感谢。
答案 0 :(得分:1)
设置表单时,您只需更改目标:
<form action="form_action.asp" method="get" target="_blank"></form>
答案 1 :(得分:-1)
<a target="_blank" href="YourAmazingURL">Click here for Amazing URL</a>
另一个例子:
<a target="_blank" href="http://www.google.com/">Google</a>
这利用了目标属性。
有关目标属性的更多信息:http://www.w3schools.com/tags/att_a_target.asp 另外:http://www.w3schools.com/html/html_links.asp
对于XHTML,只需执行以下操作:
<a href="YourAmazingURL" onclick="window.open(this.href,'_blank');return false;">Click here for Amazing URL</a>
或者,再次:
<a href="http://www.google.com/" onclick="window.open(this.href,'_blank');return false;">Google</a>