在Web應用中使用setTimeout
函數(shù),可以通過JavaScript代碼來實現(xiàn)延遲執(zhí)行某個函數(shù)或代碼塊。以下是一個簡單的示例:
<!DOCTYPE html>
<html>
<head>
<title>SetTimeout Example</title>
</head>
<body>
<script>
// 定義一個函數(shù),用于延遲執(zhí)行
function delayedFunction() {
console.log('Delayed function executed after 2 seconds');
}
// 調(diào)用setTimeout函數(shù),設置延遲時間為2秒
setTimeout(delayedFunction, 2000);
</script>
</body>
</html>
在上面的示例中,當頁面加載完成后,將會在控制臺輸出Delayed function executed after 2 seconds
。這表示delayedFunction
函數(shù)在延遲2秒后被執(zhí)行。通過設置不同的延遲時間,可以實現(xiàn)不同的延遲效果。