从用户的角度来看,是否可以单击按钮并将结果加载到新选项卡/窗口中,而不是自动加载。
就像您在某些浏览器中单击链接或右键单击 -> 在新选项卡/窗口中打开一样。 你能用按钮做到这一点吗?或者你需要一个浏览器插件吗?
这是可能吗?我知道您可以制作自定义按钮等,但这更多是出于好奇。
谢谢。
设置表单时,只需更改目标:
<form action="form_action.asp" method="get" target="_blank"></form>
<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>