| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 751 人关注过本帖
标题:[求助]对象方法循环调用问题!!!!!
只看楼主 加入收藏
mantye
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-8-5
收藏
 问题点数:0 回复次数:4 
[求助]对象方法循环调用问题!!!!!
如下js中:

function ()
{
    this.xunhuan=xunhuan;
}

function xunhuan()
{
    setTimeout("xunhuan()",1000);
    //这点写成 setTimeout("xh.xunhuan()",1000); 可以实现,但是不能这样写呀!
}

var xh=new xunhuan();

     xh.xunhuan();

谁知道该怎么写才能实现对象实例 xh 的方法 xu.xunhuan() 可以定时循环。

[此贴子已经被作者于2005-8-6 11:07:42编辑过]


搜索更多相关主题的帖子: 对象 
2005-08-05 13:10
nicholas49
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2005-7-6
收藏
得分:0 
设置一个Timer
应该可以,你看一下参考咯

2005-08-06 10:31
nicholas49
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2005-7-6
收藏
得分:0 
function Timer(iInterval){ //if not set the timer interval ,then defalut set to 500ms this.Interval=iInterval || 500; this._handleInterval; this.TimerEvent=null function Start(){ if(this.Interval!=0){ this._handleInterval=setInterval("TimerCallBack()",this.Interval); } } function Start(){ clearInterval(this._handleInterval); } function TimerCallBack(){ if (typeof this.TimerEvent=="function"){ this.TimerEvent(); } else if(this.TimerEvent!=null && this.TimerEvent.length>0){ eval(this.TimerEvent); } } } //Code for Instance var t=new Timer(3);

//------------------------------------//

//1. t.TimerEvent=function(){ //todo }

//2. t.TimerEvent="alert(\"hello\")";

//3.

t.TimerEvent=tTimerCall;

//----------------------------------// t.Start(); t.Stop();

function tTimerCall(){

}


2005-08-06 10:38
mantye
Rank: 1
等 级:新手上路
帖 子:2
专家分:0
注 册:2005-8-5
收藏
得分:0 
不行呀,是js吗,忘记说明了上边是javascript
2005-08-06 11:09
nicholas49
Rank: 1
等 级:新手上路
帖 子:62
专家分:0
注 册:2005-7-6
收藏
得分:0 
[CODE]
<script lang=javascript>
function haha()
{
 this.kaka = hehe;}
function hehe(papa)
{
 alert(papa);
 window.setTimeout("hehe(8888)",1000);
}
var yaya=new haha();
yaya.kaka(98980);
</script>
[/CODE]

2005-08-09 17:15
快速回复:[求助]对象方法循环调用问题!!!!!
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.070332 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved