提问者:小点点

能帮我修复html链接吗


null

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

共3个答案

匿名用户

null

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

匿名用户

null

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

匿名用户

null

null

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

相关问题