この構文の意味を誰かが理解するのを手伝ってもらえますか?
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 );
},
どうもありがとう!