使用Lib-GDX html时,如何知道SoundManager
崩溃的时间。它有时因为闪存错误而崩溃,我想在发生这种情况时重新加载我的网站。
答案 0 :(得分:0)
事实证明这很简单,你所要做的就是设置一个监听器并等待警报出现。我不知道这是否会产生任何其他危险后果,但这让我烦恼,我找到了解决方案,我想确保未来的用户了解它。
function check() {
var node = document.getElementById('embed-html'),
htmlContent = node.innerHTML;
if(htmlContent.includes("canvas")){
document.getElementById('logodiv').style.display = 'none';
}else if(htmlContent.includes("gwt-TextArea gwt-TextArea-readonly")){
window.location.reload();
}
并将其置于暂停状态:
setTimeout(check, 100);