$(this) 和 this
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了$(this) 和 this相关的知识,希望对你有一定的参考价值。
在使用 jQuery 时,$(this) 和 this 具体指:
this :是当前 DOM 对象;
$(this) 是jQuery对象;
例子:
<input type="text">
$(function(){ $("#search_id").focus(function(){ alert(this); //弹出值为: object htmlInputElement alert($(this)); //弹出值为:object object }) })
jQuery 对象和 DOM 对象 是可以相互转化的 : jQuery ($varJD) 转DOM (JD) :JD=$varJD[0] ; JD=$varJD.get(0) 。DOM (JD)转 jQuery ($varJD):$varJD=$(JD);
可以带入上边验证:$(this)[0],将会弹出 object HTMLInputElement。
以上是关于$(this) 和 this的主要内容,如果未能解决你的问题,请参考以下文章
ngx-translate实现国际化:this.translate.use()this.translate.get()this.translate.instant()onLangChange(代码片段