Re: [問題] 關於物件與計時器
這是scope解析問題。
setTimeout, setInterval是window物件底下的函數,你在裡面用到this
這個this會指到window而不是你想的地方。
你可以先把this傳給一個區域變數,然後在setTimeout或setInterval中用這個變數
例如:
addtext=function(){
this.add=function(){
document.getElementById('test').value+='a';
var thisref = this;
setTimeout(thisref.add(),1000);
}
}
--
Sapere Aude! 這就是啟蒙運動的口號!
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 60.250.95.16
推
03/06 18:04, , 1F
03/06 18:04, 1F
討論串 (同標題文章)
Ajax 近期熱門文章
PTT數位生活區 即時熱門文章