在iOS上使用Cordova 3.0時,如何在設備本地瀏覽器中打開鏈接?Cordova 3.0 - 在iOS的外部瀏覽器中打開鏈接
人們建議使用window.open(url, "_system")
,但這在Cordova 3.0中不起作用。
我嘗試
if(navigator.app) // Android
navigator.app.loadUrl(url, {openExternal:true})
else // iOS and others
window.open(url, "_system") // opens in the app, not in safari
有誰知道,與科爾多瓦3.0有效的解決方案嗎?
感謝
檢查我的答案2015年在這裏的WebView打開'_self'和'_blank'瀏覽器:http://stackoverflow.com/questions/32208609/cordova-why-would-inappbrowser-plugin-be-required-to-open-links-in-system-brows/32227524 –