JQuery中的$是什么意思

Ada*_*Lee 0 javascript jquery

在下面的

var obj = { one:1, two:2, three:3, four:4, five:5 };
    $.each(obj, function(i, val) {
       console.log(val);
    });
Run Code Online (Sandbox Code Playgroud)

这意味着什么?是$一个对象?

Xio*_*ion 5

$jQuery对象/函数的别名.它充当了存储所有jQuery函数的命名空间.