我的主页站点上有一个欢迎弹出窗口。
我有这个 Javascript
<script type="text/javascript">
$(document).ready(function () {
$("#div-welcome").dialog({
width: 'auto',
height: 'auto',
modal: true
});
});
</script>
如何设置 3 秒的延迟?我尝试使用 setTime 函数,但没有奏效。也许我把它放在了错误的地方。谢谢!AVersa