你也没有必要使用new Array(),使用[];
不要使用 new Number, new String, or new Boolean. 等等
不要使用new Function 来创建函数
比如你要写
frames[0].onfocus = new Function("document.bgColor='antiquewhite'")
你应该这样写
frames[0].onfocus = function () {document.bgColor = 'antiquewhite';};,
第二种写法可以使得编译器尽早的看到函数体。使得错误尽快的检查出来。
当你写
Js代码
myObj = new function () {
this.type = 'core';
};
的时候,这样写
Js代码
myObj = {
type: 'core'
};
Déclaration:Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn