<input> 标签怎么禁用?
末日的春天
末日的春天 2017-01-10 11:50:56
0
2
1341

<input> 标签怎么禁用?

末日的春天
末日的春天

reply all(2)
数据分析师

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.

伊谢尔伦

<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 元素的值切换为可用。


Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template