1

根据这个线程:一页可以同时设置多少个javascript setTimeout/setInterval 调用?可以同时有多个 setIntervals。

但是,是否可以同时设置 setInterval 和 setTimeout?

这不工作...

<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script> 
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>
    $(document).ready(function() {
        init();
    }); 

    function init() {
        $('#startbutton').on('click', handleClick);
    }
</script>   
</head>
<body>
<script>

var playBeep = function () {
var snd = new Audio("beep-7.wav");
snd.play();
}

var handleClick = function () {
    var interval1 = setInterval(updateDisplay, 1); 
    makeIntervals([1,2,3], playBeep);
}

var makeIntervals = function(timeList,callback){
intervals = []
for(i in timeList){
    intervals.push(setTimeout(callback,timeList[i]))
}
return intervals
}

function updateDisplay() {
    var value = parseInt($('#timer').find('.value').text(), 10);
    value++;
    $('#timer').find('.value').text(value);
}

</script>
<button type="button" id="startbutton">Play Beep</button>
<P>
<div id="timer"><span class="value">0</span> ms</div>
<P>
4

1 回答 1

0

当然。但是,请确保您没有太多。

于 2012-11-09T01:05:38.587 回答