Maison  >  Article  >  interface Web  >  javascript new 需不需要继续使用_javascript技巧

javascript new 需不需要继续使用_javascript技巧

WBOY
WBOYoriginal
2016-05-16 18:50:49972parcourir

你也没有必要使用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