JavaScript中几个重要的属性(this、constructor、prototype)
摘要:
转自:http://carterslam.javaeye.com/?show_full=truethisthis表示当前对象,如果在全局作用范围内使用this,则指代当前页面对象window; 如果在函数中使用this,则this指代什么是根据运行时此函数在什么对象上被调用。 我们还可以使用apply和call两个全局方法来改变函数中this的具体指向。先看一个在全局作用范围内使用this的例子:<script type="text/javascript"> console.log(this=== window);// true console.log(wind 阅读全文
posted @ 2012-06-15 15:41 jQing 阅读(235) 评论(0) 推荐(0) 编辑