有人能幫我理解這個語法是什麼意思嗎?圍繞函數的括號
爲什麼有一個(在function()的前面,並且有一個)();功能結束後?
(function()
{
CKEDITOR.htmlParser.cdata = function(value)
{
this.value = value;
};
CKEDITOR.htmlParser.cdata.prototype =
{
type : CKEDITOR.NODE_TEXT,
writeHtml : function(writer)
{
writer.write(this.value);
}
};
})();
請問有人請幫我理解這個語法是什麼意思?爲什麼在function()前面有$使用了?
$ : function(rules)
{
this._ =
{
elementNames : [],
attributeNames : [],
elements : { $length : 0 },
attributes : { $length : 0 }
};
if (rules)
this.addRules(rules, 10);
},
非常感謝!
有人請幫我理解這個語法是什麼意思?爲什麼在function()前面有$使用了? $:函數(規則) – dojomedojo