如果页面加载超过 3 秒,则需要在页面加载之前显示一个弹出窗口。在代码下方使用,但如果页面加载也少于 tahn 3 seocnds,它会显示弹出窗口。如果页面加载需要更多时间而不是更少时间,则需要显示弹出窗口。
<script type="text/javascript">
setTimeout(fnShowPopup, 1000);
function fnShowPopup() {
var answer = confirm("It may take few time to open this docuemnt. Click YES if you want to open the docuemnt in native format or click on CANCEL to continue viewing the docuemnt")
if (answer)
window.open(NativeView())
}
</script>