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