我想制作一个全局弹出窗口,这样我就可以从不同的页面访问它。我正在阅读此内容,解决方案是将其直接添加到 index.html 标记中的 body 标记中,所以我这样做了,现在我可以使用此代码从我的其他页面(未添加此弹出窗口的 html 页面)打开它
$("#about-create-new-game-popup" ).enhanceWithin().popup();
setTimeout(function(){
$('#about-create-new-game-popup').popup('open');
}, 2000);
问题是这个弹出窗口在应用程序加载期间显示,因为它被添加到 index.html 页面。有人可以告诉我我在这里做错了什么。谢谢。