当前位置: 代码迷 >> Web前端 >> apply 运用的一个例子
  详细解决方案

apply 运用的一个例子

热度:625   发布时间:2012-11-10 10:48:50.0
apply 使用的一个例子
<html>
<head>
<title>test</title>
<script>
MyObj={
   a:1,
   show:function(){
        alert(11111111);
   }
}
function test(a){
  alert(this.a);
}
window.onload=function(){
     test.apply(MyObj,["ss"]);
     
}
</script>
</head>
<body>

<input type="button" onClick="test()" value="test" />
</body>
</html>

  相关解决方案