Heim  >  Artikel  >  Web-Frontend  >  javascript new 需不需要继续使用_javascript技巧

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

WBOY
WBOYOriginal
2016-05-16 18:50:49972Durchsuche

你也没有必要使用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'
};
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn