<input type="text" name="" id="name">
<script type="text/javascript">
$(function(){
$('#name').change(function(){
console.log($(this))
$('this').css('backgroundColor','red');
})
</script>
为什么这样不行 > $(this)在控制台打印出来时 是获取到input的
多了单引号
多了单引号