有人可以帮助我修复 html link

Can Some Help me to fix html link

嘿,我需要有关此代码的帮助,我希望 link 在新选项卡中打开 我希望 link 在新选项卡中打开,而不是在当前选项卡中打开

    <form>
<input class="MyButton" type="button" value="Your Text Here" onclick="window.location.href='http://www.yourdomain.com'" />
</form>

为了定位新的 window,您需要使用 target="" property window.location.href 还包含当前 url.

的 link
<form>
<input class="MyButton" type="button" value="Your Text Here" onclick="window.location='http://www.yourdomain.com'" target="_blank"/>
</form>

如果你想使用 Javascript 使用:WINDOW.OPEN

<form>
<input class="MyButton" type="button" value="Your Text Here" onclick="window.open('http://www.yourdomain.com')" />
</form>

嘿,要在新标签页中打开 link,您必须添加 target= "_blank"

像这样

  <form>
<input class="MyButton" type="button" target="_blank" value="Your Text Here" onclick="window.location.href='http://www.yourdomain.com'" />
</form>