This time I will bring you a detailed explanation of the use of jQuery$. and $()., what are the precautions when using jQuery$. and $()., the following is a practical case, let’s take a look .
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 in html documents, one of the function functions is to replace GetElementByID, but () can not only be ID, but also various class 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';
can use jq instead of jQuery and $
#. ##Let’s take a look at the difference between using $. and $(). in jquery. 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的元素,例如获取<p class="p1"></p> $(".p1").onclick表示类名为p1的p点击事件 jquery中$.,例如$.post(),$.get(),$.ajax()等这些都是jquery这个对象的方法
echarts node display dynamic data implementation steps
##Detailed explanation of the use of JS decorator function
The above is the detailed content of Detailed explanation of jQuery$. and $(). usage. For more information, please follow other related articles on the PHP Chinese website!