超大滑块中隐藏的jquery语法

时间:2011-12-16 13:46:32

标签: javascript jquery

我正在浏览全屏图像滑块的超大化.3.5.5.js文件 - supersized

我无法理解以下行的语法。虽然我没有在这里粘贴完整的代码,但我认为这不是语法解释的任何问题。

/* Variables
        ----------------------------*/
            var el = '#supersized',
            base = this;
        // Access to jQuery and DOM versions of element
        base.$el = $(el);
        base.el = el;

我需要解释最后两行......

2 个答案:

答案 0 :(得分:1)

他们只是将jQuery对象和id字符串保存在不同的变量

jQuery版本以$

为前缀

base。$ el = jQuery对象版本el(#supersized)

base.el ==只是id(字符串)

答案 1 :(得分:0)

倒数第二行是存储一个jQuery对象,其中包含ID为'supersized'的DOM元素,而最后一行只存储选择字符串'#supersized'。