search

Home  >  Q&A  >  body text

<input> 标签怎么禁用?

<input> 标签怎么禁用?

末日的春天末日的春天2878 days ago1336

reply all(2)I'll reply

  • 数据分析师

    数据分析师2017-09-30 23:51:19

    How to disable

    <input> tag? -PHP Chinese website Q&A-How to disable the <input> tag? -PHP Chinese website Q&A

    Take a look around and learn.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-01-10 11:52:16

    <input> 标签用于搜集用户信息。
    根据不同的 type 属性值,输入字段拥有很多种形式。输入字段可以是文本字段、复选框、掩码后的文本控件、单选按钮、按钮等等。

    在 HTML 中,<input> 标签没有结束标签。
    在 XHTML 中,<input> 标签必须被正确地关闭。

    <form action="form_action.asp" method="get">
    First name: <input type="text" name="fname" />
    Last name: <input type="text" name="lname" />
    <input type="submit" value="Submit" />
    </form>

    其中disabled 属性规定应该禁用 input 元素。

    被禁用的 input 元素既不可用,也不可点击。可以设置 disabled 属性,直到满足某些其他的条件为止(比如选择了一个复选框等等)。然后,就需要通过 JavaScript 来删除 disabled 值,将 input 元素的值切换为可用。


    reply
    0
  • Cancelreply