我已经使用 iframe 在我的 android phonegap 应用程序中打开网页。当 iframe 打开时,如果网络连接突然失败,则会显示错误为“无法建立安全连接(http://www.google.com) )。和应用程序强制关闭。
这是我的代码:
var iframe = document.createElement("IFRAME");
iframe.setAttribute("src", "http://www.google.com");
$("#IframeDiv").append(iframe);
请指导我。在此先感谢。