码迷,mamicode.com
首页 > 其他好文 > 详细

this

时间:2017-08-14 23:43:55      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:w3c   tom   cal   head   org   write   this   func   htm   

<!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

标签:w3c   tom   cal   head   org   write   this   func   htm   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!