创建一个按钮并链接到一个页面

时间:2013-11-07 09:22:09

标签: html button hyperlink

这是我第一次使用html而且我已经卡住了..

这是我的程序生成的代码

<form id="form1" name="form1" method="post" action="">

    <label><span class="creamcustom">..</span> 

      <input type="submit" name="btnReadAles" id="btnReadAles" value="Read" />

    <span class="creamcustom">...... </span></label>

    <input type="submit" name="btnBuyAles" id="btnBuyAles" value="Buy Now" />

  </form>

现在我想要btn“btnReadAles”链接并打开此页面“read.html”

我该怎么做,请记住,我还是新手,所以我不知道何时使用,例如。 (顺便说一句,我甚至都不知道这意味着什么......

日Thnx

2 个答案:

答案 0 :(得分:0)

试试这个

<input type="submit" name="btnReadAles" id="btnReadAles" onclick='window.location.href="read.html"' value="Read" />

OR

<input type="submit" name="btnReadAles" id="btnReadAles" onclick='window.open("read.html")' value="Read" />

在FORM Action中

<form action="read.html">
    <input type="submit" id="btnReadAles" value="Read">
</form>

答案 1 :(得分:0)

将其包裹在form元素

<form action="http://some site.com/read.html">
    <input type="submit" value="Go to SOME SITE">
</form>

有关详细信息,请参阅THIS POST