在Android 4.4及更高版本的設備中會出現以下問題。iframe的安全錯誤
這是我們的iframe的樣子:
<iframe frameborder=0 id="myIFRAME"></iframe>
以下是我們編程變得IFRAME方式:
if(document.getElementById("myIFRAME")){
me.setMyIFRAME(document.getElementById("myIFRAME").contentWindow);
}
這導致相關協議不匹配安全錯誤:
"Uncaught SecurityError: Blocked a frame with origin " https://www.google.com " from accessing a frame with origin "file://". The frame requesting access has a protocol of "https", the frame being accessed has a protocol of "file". Protocols must match.
我們正在使用煎茶觸摸與科爾多瓦發展我們的項目。
我必須使用這個 – Vishnu