現在このスクリプトを使用していますが、入力されたフィールドの色を変更するためにスクリプトを拡張したいと思いますか? ありがとう
<script>
$(document).ready(function(){
$("input").focus(function(){
$(this).css("background-color","#cccccc");
});
$("input").blur(function(){
$(this).css("background-color","#ffffff");
});
});
</script>