025_为什么JavaScript变量以美元符号开头?

88570299 2020-06-18

一、

一句话: 为了好区分,只是一个标识;

jquery中的一个非常常见的用途是将存储在变量中的jquery对象与其他变量区分开来。例如,我将定义

var $email = $("#email"); // refers to the jQuery object representation of the dom object
var email_field = $("#email").get(0); // refers to the dom object itself

我发现这对于编写jquery代码非常有用,并且可以很容易地看到具有不同属性集的jquery对象。

Reference: https://www.codenong.com/205853/

相关推荐

Web全栈笔记 / 0评论 2020-06-15