上下文对象
function myTest()
{
this.context=this.constructor;
}
myTest(); // must be invoke, if not, alert(context) bug show: context is not defined.
alert(context); //context is window
var o =new myTest();
alert(context); //context is window
alert(o.context); // context is myTest object