标签:一句话 The jquer jquery代码 http https sel 存储 var
一、
一句话: 为了好区分,只是一个标识;
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/
标签:一句话 The jquer jquery代码 http https sel 存储 var
原文地址:https://www.cnblogs.com/arun-python/p/13155291.html