最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

In JavascriptJQuery what is $. for? - Stack Overflow

programmeradmin1浏览0评论

I'm writing a utility file and I've gotten some examples from online and this a form of writing the utility I've e across:

$.util = $.extend($.util || {}, {

    //functions here...

});

and so I think I understand what it's doing. It allows me to call $.util.function() somewhere else, however when I remove the . in front of the $ the code breaks. What does this notation mean? What's the difference between $. and $?

I'm writing a utility file and I've gotten some examples from online and this a form of writing the utility I've e across:

$.util = $.extend($.util || {}, {

    //functions here...

});

and so I think I understand what it's doing. It allows me to call $.util.function() somewhere else, however when I remove the . in front of the $ the code breaks. What does this notation mean? What's the difference between $. and $?

Share Improve this question asked Oct 2, 2016 at 9:51 Van-SamaVan-Sama 1,2844 gold badges16 silver badges21 bronze badges 3
  • stackoverflow./questions/1049112/… – Jean-Claude Colette Commented Oct 2, 2016 at 9:57
  • @Jean-ClaudeColette not quite the same – Rory McCrossan Commented Oct 2, 2016 at 9:57
  • 2 If you think of $ as a synonym for jQuery then it bees clear why "jQueryutil" doesn't work. – JJJ Commented Oct 2, 2016 at 9:58
Add a ment  | 

6 Answers 6

Reset to default 6

$.util = something means "assign something to property util of object $".

$util = something means "assign something to variable $util"

Similarly, $.extend is "get value of property extend of object $" (which is a function in this exact scenario) and $extend is "get value of variable $extend"

If you're using jQuery, $ is just a variable contaning the jQuery object. So by writing $., you're essentially accessing jQuery properties and functions. Instead of $, you could also write jQuery and it should work the same way.

There's no special meaning to the $ character in JavaScript other than that. It acts like any other character, so $util is just a variable name.

jQuery is an object that is assigned to both jQuery and $ on the window

It has methods that act on collections of elements eg $('.some-element').someMethod() and static methods that are just attached to the jQuery object but don't modify a collection, They are just normal function attached to the jQuery object to prevent exposing too many functions to the global context.

  • $. - allows you to proceed to $ (jQuery) object property or method directly
  • $ - usually used as shortcut for invoking jQuery object

Whilst prefixing anything with $ won't make it jQueryable bec. this character can be used in variable name along with others (e.g. what is not applicable for PHP).

Consider jQuery as a big class woth a lot of static functions and constructs.

The right way for calling any of its functions should be jQuery.someFunc() for static functions and var obj = jQuery('css selectors') for creating an object for HTML objects and then executing functions on that object.

Now for easier coding, jQuery added $ as an alias for jQuery. It's nothing more than an alias.

Try this code:

  <script type="text/javascript">
    document.write('(jQuery === $) is ' + (jQuery === $) + '<br />');
    document.write('typeof(jQuery) = ' + typeof(jQuery) + '<br />');
  </script>

You will see:

(jQuery === $) is true

typeof(jQuery) = function

So jQuery is a function with a bunch of extra properties and functions attached to it.

If you're ing from a strongly-typed language background, the concept of attaching properties and methods to a function might seem strange, but you can do it in javascript.

发布评论

评论列表(0)

  1. 暂无评论