前端htmlinput标签disable属性
该属性只要出现在标签中,表⽰禁⽤该控件
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<input type="text" disabled>
</body>
htmlbutton属性
</html>
加上了disabled 不可选了
默认是enable 不⽤加上参数⾃⼰本来就有了
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Title</title>
</head>
<body>
<div>
<form>
<div>
<input type="text" disabled>
<input type="button" disabled value="提交">
</div>
</form>
</div>
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。