4

如果 4e3 等于 4 秒。3秒我会用什么?还是 2 秒?

<SCRIPT LANGUAGE="javascript">
$( function() {
 setTimeout(function() {
        $('#loadingque').trigger('click');
    }, 4e3);
});
</script>
4

4 回答 4

17

如果您了解为什么4e3是 4000,那么您可以弄清楚 3000 的样子。eN表示10 to the power N,所以 3 乘以 10 的 3 次方是 3000,或3e3.

于 2012-11-15T09:02:03.167 回答
2
setTimeout(function() {
      // Do something after 5 seconds
}, 5000);

jQuery(document).ready(function () {`enter code here`
    //hide a div after 3 seconds
    setTimeout( "jQuery('#div').hide();",3000 );
});

希望这些对你有帮助..

于 2012-11-15T09:03:34.917 回答
2

需要几毫秒

setTimeout(function() {
    document.write(new Date());
}, 3000);
于 2012-11-15T09:04:45.507 回答
0
var runCount = 0;
var maxCount = 1000000;

function timerMethod()
{
    runCount++;
    if(runCount >= maxCount)
    {
        clearInterval(timerId);
    }
    $('#loadingque').trigger('click');
    console.log(runCount + "of" + maxCount);
}

var timerId = setInterval(timerMethod, 3000);

这是每 3000 毫秒运行一次 maxCount 次

于 2012-11-15T09:13:53.933 回答