首页 > 其他 > 详细

this

时间:2017-08-14 23:16:11      阅读:241      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>范例6-6</title>
</head>
<body>
<h1>this关键字测试</h1>
<script language="javascript">
    var chair = "公园里的椅子";             // 公物,谁都可以用。
    function TomHome( )                     // 汤姆的家
    {
        this.chair = "汤姆家的椅子";        // 汤姆家的椅子
    }
    function useChair( )                    // 使用椅子    
    {
        document.write( "<li>此时使用的是:" + this.chair + "<br>");
    }
    var th = new TomHome();         
    useChair();                             // 当前所在的场景是公园里
    useChair.call( th );                    // 当前所在的场景是汤姆家
</script>
</body>
</html>

this关键字测试

  • 此时使用的是:公园里的椅子
  • 此时使用的是:汤姆家的椅子

 

this

原文:http://www.cnblogs.com/huodaihao/p/7360513.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!