网站地图    收藏   

主页 > 前端 > jquery教程 >

jQuery中$this和$(this)的区别介绍

来源:未知    时间:2015-07-06 17:54 作者:xxadmin 阅读:

[导读] jQuery中$this和$(this)的区别介绍 //this其实是一个Html元素。//$this只是个变量名,加$是为说明其是个jquery对象。//而$(this)是个转换,将this表示的dom对象转为jquery对象,这样就可以使用jque...

jQuery中$this和$(this)的区别介绍

// this其实是一个Html 元素。
// $this 只是个变量名,加$是为说明其是个jquery对象。
// 而$(this)是个转换,将this表示的dom对象转为jquery对象,这样就可以使用jquery提供的方法操作。
 
 
(function($){
    $.fn.hilight = function(options){
        debug(this);
 
        var defaults = {
            foreground: 'red',
            background: 'yellow'
        };
 
        var opts = $.extend({}, $.fn.hilight.defaults, options);
 
        return this.each(function() {
      // this其实是一个Html 元素。
      // $this 只是个变量名,加$是为说明其是个jquery对象。
      // 而$(this)是个转换,将this表示的dom对象转为jquery对象,这样就可以使用jquery提供的方法操作。
            $this = $(this);
 
            // build element specific options
            var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
             
            // update element styles
            $this.css({
                backgroundColor: o.background,
                color: o.foreground
            });
 
            var markup = $this.html();
            // call our format function
 
            markup = $.fn.hilight.format(markup);
 
            $this.html(markup);
        });
 
    };
 
 
    // define our format function
    $.fn.hilight.format = function(txt) {
        return '<strong>' + txt + '</strong>';
    };
 
 
    // 插件的defaults
    $.fn.hilight.defaults = {
        foreground: 'red',
        background: 'yellow'
    };
 
    function debug($obj) {
        if (window.console && window.console.log){
            window.console.log('hilight selection count: ' + $obj.size());
        }
    };
 
})(jQuery)


自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论