0

大家好,下面是我在 Dreamweaver cs 6 中的 html 中的代码,我的按钮只是从 index_home.html(女巫是登录名)转到 index_main.html 页面,这背后没有逻辑我只需要 onclick/href=工作,但由于某种原因我的没有!使用dreamweaver cs 6、html 5。

我不是 html 的新手,只是 dreamweaver:这是代码!

    <div id="Buttons">
<br/>
  <form method="post" name="buttons" id="buttons">
    <button name="Login" id="Login" href="index_main.html">LogIn</button>
    <button name="Register" id="Register" >Register</button>
  </form>
</div>

只是其中有这么长的href的登录,在我得到这些基本的东西之前不想继续下去:)任何想法都会受到赞赏

4

1 回答 1

2

按钮上不能有 href。

任何一个:

  • 把它变成一个a带有href的标签
  • 执行 onclick 以重定向
  • 使按钮成为提交按钮type="submit",并将表单设置为action您要发送到的页面。
于 2012-10-22T13:18:05.267 回答