當我返回並擦除數據時,將輸入字段留空,但背景不會恢復爲原始顏色,除非我輸入A「0」。需要腳本通過輸入更改div背景
我需要DIV的背景顏色在空白時恢復到原來的顏色。
我在做什麼錯?
<script>
$(document).ready(function() {
$("#id").keypress(function() {
if ($("#id").val().length > 0) $("#in").css("background-color", "red");
else {
if ($("#id").val().length == 0) $("#in").css("background-color", "grey");
}
});
});
</script>
你爲什麼第二次測試'.length'?這就是'else'的用途。 – Blazemonger 2012-04-09 13:57:45