我正在window.open()
使用
var courseId = $courseId;
var exportURL = "scormExport.do?courseId="+ $courseId + "&exportPlayer=true&exportAssets=true&exportJson=true";
window.open( exportURL, "LS3R60 SCORM Course Export",
"width=1024, height=768, scrollbars=yes, toolbar=no, resizable=yes,
directories=no, status=yes, menubar=no");
问题在于 URL 正在服务器上调用。当窗口打开时,加载内容然后在新窗口上显示需要花费大量时间。所以我希望当我打电话时window.open()
,我可以显示某种动画的东西,比如进度条,或任何其他叠加层或任何显示某件事正在进行中的东西。
我该怎么做?
谢谢。