我是 jQuery 的新手,在使用 jQuery css 属性时,我发现输入框在焦点/模糊上的奇怪行为。
我的代码是这样的
<body>
Enter something <input type="text" id="text" />
<script>
$(document).ready(function(){
$("#text").focus(function(){
$("#text").css("border","5px");
} );
$("#text").blur(function(){
$("#text").css("border-color","#555");
} );
} );
</script>
</body>
模糊时效果最差,因为整个输入框从那里消失了。我尝试在 jQuery API 文档和其他一些来源上查找,但没有找到任何结果。如果我做错了什么,请告诉我,提前谢谢你。