标签: android iframe
当Android WebView使用本地文件加载iframe时,它会打开一个新窗口。
//打开一个新窗口
<iframe src="file:///sdcard/example.html">
如果WebView加载远程文件(http),它将在当前iframe中打开。否则失败
//在当前的iframe中打开
<iframe src="http://www.google.com">
我想像使用http
有没有人有想法?
提前感谢!