你能解释我这个?
在Firefox中运行以下命令: http://jsfiddle.net/eMa8y/24/
HTML:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
</head>
<body>
<form>
<input type="text" placeholder="input" required />
<input type="text" placeholder="input" />
</form>
</body>
</html>
CSS:
input {
color:black;
}
[required] {
color:red;
}
脚本:
$(document).ready(function () {
setTimeout(function () {
$("input").val("");
}, 3000);
});
等待三秒钟,输入得到一个红色边框。 为什么? 它是火狐的一个bug?
请注意,我使用Firefox 18.0.2。
谢谢。