動く setInterval(function(){mf_getymg();},10000);
動く setInterval(mf_getymg,10000);
動かない setInterval(mf_getymg(),10000);
動く setInterval('tt()',3000); クォーテーションで括る
function mf_getymg(){
var getmg=new XMLHttpRequest();
getmg.onreadystatechange=function(){
if (getmg.readyState==4 && getmg.status==200){
mf_test(eval(getmg.responseText));
}
}
getmg.open('GET','http://192.168.11.10/YahooAPI/List.php',true);
getmg.send(null);
}
function mf_test(mg){
var newli=document.createElement('li');
newli.innerHTML=mg;
var ul=document.getElementById('test');
ul.appendChild(newli);
}
クォーテーションで括る
<script type="text/javascript">
var x=0;
setInterval('tt()',3000);
function tt(){
x=x+1;
alert(x);
}
</script>
0 件のコメント:
コメントを投稿