我目前正在使用这个脚本,并且很想扩展它来改变已经填写的字段的颜色,请帮忙?谢谢
<script>
$(document).ready(function(){
$("input").focus(function(){
$(this).css("background-color","#cccccc");
});
$("input").blur(function(){
$(this).css("background-color","#ffffff");
});
});
</script>