每当为子输入元素触发 keydown 事件时,我正在编写一个 jquery 脚本来更改父 div 的颜色,但代码似乎没有运行。
<html>
<head>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("input").keydown(function(){
$("#div").css("background-color","teal");
});
});
</script>
</head>
<body>
<div id="div">
<input type="text">
</div>
</body>
</html>