嗨,快速提问。
从 webview 调用本机的最佳方法是什么。iframe还是window.location?_
例如:
gapBridge = document.createElement("iframe");
gapBridge.setAttribute("style", "display:none;");
gapBridge.setAttribute("height","0px");
gapBridge.setAttribute("width","0px");
gapBridge.setAttribute("frameborder","0");
document.documentElement.appendChild(gapBridge);
gapBridge.src = custom + "://" + custom;
或者 :
window.location = custom + "://" + custom;
Ps:顺便说一句,在嵌入的 webview 中更改 src 似乎不起作用。正如堆栈上的其他文章所揭示的那样