• 密码登录
  • 手机登录
社交账号登录
阅读( ) 收藏( ) 加载中~ 我要纠错

代码实例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<style>
input:read-write
{
	background-color: yellow;
}
</style>
</head>
<body>

<h3> :read-write 选择器实例演示。</h3>

<p>普通的input元素:<br><input value="hello"></p>

<p>只读的input元素:<br><input readonly value="hello"></p>

<p> :read-write 选择器选取没有设置 "readonly" 属性的元素。</p>

</body>
</html>

尝试一下 »

点击“尝试一下”按钮查看在线实例

定义和用法

:read-write 选择器用于匹配可读及可写的元素。

注意: 目前, 在大多浏览器中, :read-write 选择器只使用于设置了input 和 textarea 元素。


×