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