vs <button> vs
vs <input type='button">

后端 未结 2 1756
醉梦人生
醉梦人生 2020-12-28 14:40

I\'ve seen so many posts along the lines of \"I\'d like to one-specific-thing for my one-specific-situation when it comes to buttons in HTML.

If I

相关标签:
2条回答
  • 2020-12-28 15:02

    Generally, I try to use the HTML tag in the most "semantic way" and useful way:

    • <a> tag: a is for "anchor", I use it when the button is a link to a content on the page or external content;
    • div tag: this is a simple container. I use it when I have to do simple buttons without any specific job but really custom style(simple animation, transition, open modal, etc). This is the jolly.
    • <button> tag: according with W3, this is the standard tag to create buttons on the page, so use it when you need an action like onClick().
    • <input type="button"> tag: is equal to the button tag, but you need it for form submission, because browser that submit for with <button> can submit different values. I use it generally on form.
    0 讨论(0)
  • 2020-12-28 15:20

    There's a good article that summarizes the differences nicely

    In short:

    |                       |       General usage        | Complex designs | Can be disabled |
    |-----------------------|----------------------------|-----------------|-----------------|
    | <button>              | General button purpose.    | Yes             | Yes             |
    |                       | Used in most cases         |                 |                 |
    | --------------------- | -------------------------- | --------------- | --------------- |
    | <input type="button"> | Usually used inside        | No              | Yes             |
    |                       | forms                      |                 |                 |
    | --------------------- | -------------------------- | --------------- | --------------- |
    | <a>                   | Used to navigate to        | Yes             | No              |
    |                       | pages and resources        |                 |                 |
    | --------------------- | -------------------------- | --------------- | --------------- |
    | <div>                 | Can be used for clickable  | Yes             | No              |
    |                       | area which is not button   |                 |                 |
    |                       | or link by definition      |                 |                 |
    
    0 讨论(0)
提交回复
热议问题