js延时执行方法

<h3>3秒后执行</h3>
<script>
var t=setTimeout("aa()",3000);
 
function aa(){
 alert("3");
}  
</script>
查看效果