可能重複:
Why would a javascript variable start with a dollar sign?
Can someone explain the dollar sign in Javascript?
我一直在尋找一個js教程,其中幾個地方,在他們面前宣佈$的功能。我做了一些在線搜索,但沒有找到任何參考。下面是我自己創建一個例子:
var $x = function(q)
{
return q*q;
}
var $y = function()
{
alert($x(10));
}
當我打電話從一個網頁,我得到一個警報,100,這是我期待$ Y。那麼,如果有的話,$是什麼?
這是一個有效的字符。他們可以稱他們爲「Cx」和「Cy」。 – xanatos
可能是這個答案可以給你一些見解http://stackoverflow.com/questions/3155979/why-does-several-javascript-libraries-use-for-one-or-other-use –