在jQuery中,this关键字指的是当前元素。当我们在事件处理程序中使用this关键字时,它指的是触发事件的元素。我们可以使用$(this)来将当前元素包装在一个jQuery对象中,以便进行后续的操作。

示例代码:

<input class="form-control" id="name">

<script>
    $("#name").blur(function(){
        //$(this)表示触发事件的当前元素,也就是$("#name")。
        console.log($(this).val());
    })
</script>
(adsbygoogle = window.adsbygoogle || []).push({});