如果4e3等于4秒。我将使用3秒的什么?还是2秒?
<SCRIPT LANGUAGE="javascript">
$( function() {
setTimeout(function() {
$('#loadingque').trigger('click');
}, 4e3);
});
</script>
答案 0 :(得分:16)
如果你了解为什么4e3
是4000,那么你可以弄清楚3000的样子。 eN
表示10 to the power N
,因此权力3的3倍是3000,或3e3
。
答案 1 :(得分:1)
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 );
});
希望这些能帮到你..
答案 2 :(得分:0)
需要几毫秒
setTimeout(function() {
document.write(new Date());
}, 3000);
答案 3 :(得分: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次