我似乎无法在Mozilla docs中找到任何对它的引用,但是Rect
“类”是否有公共构造函数?该函数有什么参数?
修改:似乎尝试拨打Rect()
(有或没有参数)会产生TypeError: Illegal constructor
:http://jsfiddle.net/IQAndreas/a55hG/
答案 0 :(得分:0)
构造函数是new Rect(left,top,width,height)
任何较少的参数都会导致许多字段未被设置。例如。 new Rect(1,2,3)
将返回一个没有高度的
答案 1 :(得分:-1)
你的jsfiddle中的Rect
是不 Mozilla Rect
对象。
What is Rect function in Chrome/Firefox for?
Mozilla Rect
由https://developer.mozilla.org/en-US/docs/Mozilla/JavaScript_code_modules/Geometry.jsm
您只能在Components.utils.import("resource://gre/modules/Geometry.jsm", your_scope_obj);
我认为你不能在jsfiddle环境中测试它。