This time I will bring you the use of $. and $(). in jQuery. What are theprecautionsfor using $. and $(). in jQuery. The following is a practical case. Let’s take a look. one time.
People like me who have not studied systematically always have this problem:(
$ is another name for jQuery
and jQuery is a function provided by the jQuery library .(It seems that it is not just a function, because there is also the use of $.ajax(options), which is equivalent to jQuery.ajax(options))
The function of this function is to search and sum based on the parameters in () To select elements inhtml documents, one of the function functions is to replace GetElementByID, but () can not only be ID, but also variousclass selectors
For example:
$(document) selects the entire document object
. Can it only be replaced by $? No. In order to prevent naming conflicts, the jQuery library provides Another mechanism to give jQuery functions another alias.
For example:
var jq = jQuery.noConflict(); // Do something with jQuery j("p p").hide(); // Do something with another library's $() $("content").style.display = 'none';
You can use jq instead of jQuery and $ in the code.
Let’s take a look at the difference between using $. and $(). in jquery, and what are their respective meanings?
$ is the jquery object, $() is jQuery (), you can pass parameters in it, and its function is to get the element
The following example
$(".p1") 表示获取类名为p1的元素,例如获取 $(".p1").onclick表示类名为p1的p点击事件 jquery中$.,例如$.post(),$.get(),$.ajax()等这些都是jquery这个对象的方法
I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the PHP Chinese website !
Recommended reading:
How to use Vue to write a two-way data binding
How to implement the React diff algorithm
The above is the detailed content of Use of $. and $(). in jQuery. For more information, please follow other related articles on the PHP Chinese website!