'Rect'有构造函数吗?

时间:2014-04-09 04:55:29

标签: javascript

我似乎无法在Mozilla docs中找到任何对它的引用,但是Rect“类”是否有公共构造函数?该函数有什么参数?

修改:似乎尝试拨打Rect()(有或没有参数)会产生TypeError: Illegal constructorhttp://jsfiddle.net/IQAndreas/a55hG/

2 个答案:

答案 0 :(得分:0)

构造函数是new Rect(left,top,width,height)

任何较少的参数都会导致许多字段未被设置。例如。 new Rect(1,2,3)将返回一个没有高度的

的Rect对象

屏幕截图:http://puu.sh/81KSa/e225064bec.png

答案 1 :(得分:-1)

你的jsfiddle中的Rect Mozilla Rect对象。 What is Rect function in Chrome/Firefox for?

Mozilla Recthttps://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Geometry.jsm

提供

您只能在Components.utils.import("resource://gre/modules/Geometry.jsm", your_scope_obj);

之后在Firefox扩展程序中使用它

我认为你不能在jsfiddle环境中测试它。