函数操作的一系列常用扩展函数。
Methods
- 
    SuperMap.Function.bind(func, object){function}common/commontypes/BaseTypes.js, line 366
- 
    
    
    绑定函数到对象。方便创建 this 的作用域。 Name Type Description funcfunction 输入函数。 objectObject 对象绑定到输入函数(作为输入函数的 this 对象)。 Returns:Type Description function object 参数作为 func 函数的 this 对象。 
- 
    SuperMap.Function.bindAsEventListener(func, object){function}common/commontypes/BaseTypes.js, line 386
- 
    
    
    绑定函数到对象,在调用该函数时配置并使用事件对象作为第一个参数。 Name Type Description funcfunction 用于监听事件的函数。 objectObject this 对象的引用。 Returns:Type Description function 
- 
    SuperMap.Function.False(){boolean}common/commontypes/BaseTypes.js, line 399
- 
    
    
    该函数仅仅返回 false。该函数主要是避免在 IE8 以下浏览中 DOM 事件句柄的匿名函数问题。 Returns:Type Description boolean Exampledocument.onclick = SuperMap.Function.False;
- 
    SuperMap.Function.True(){boolean}common/commontypes/BaseTypes.js, line 410
- 
    
    
    该函数仅仅返回 true。该函数主要是避免在 IE8 以下浏览中 DOM 事件句柄的匿名函数问题。 Returns:Type Description boolean Exampledocument.onclick = SuperMap.Function.True;
- 
    SuperMap.Function.Void(){undefined}common/commontypes/BaseTypes.js, line 421
- 
    
    
    可重用函数,仅仅返回 "undefined"。 Returns:Type Description undefined