如何链接两个HTML页面和一个按钮?

这个问题在这里已经有了答案:

  • 如何创建一个像链接一样的HTML按钮? 27个答案

  • 就我个人而言,我只是将按钮更改为标准的锚点。 您仍然可以设置链接的样式,使其看起来像一个按钮。

    <a href="index.html">Go home</a>
    

    如果元素真的必须保持一个按钮,你可以这样做:

    <button onclick="location.href='index.html'>Go home</button>
    

    不过这并不是最佳做法。


    这将添加一个按钮并将其链接到登录页面:

    <a href="path_to_login_page">
      <button>Take me to the login page</button>
    </a>
    

    更改path_to_login_pageTake me to the login page以自定义按钮。 如果您已经有了一个自定义的按钮并且想要使用它:

    <a href="path_to_login_page">
      'Place your button here'
    </a>
    

    这是最快和最快的方法:

    <a href="login-page.html">
    <button> Login Page</button>
    </a>
    

    运行并在此检查:https://jsfiddle.net/2zov6q2v/14/

    链接地址: http://www.djcxy.com/p/36553.html

    上一篇: How do I link two HTML pages with a button?

    下一篇: How can I make a button redirect my page to another page?