Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我在使用 Phonegap (Cordova) 时如何获取 CordovaWebView 的当前 URL?
当 URL 更改为我想要的 URL 时,我想在 Java 中执行类似的操作:
if(current_url_cordova_webview=="http://www.google.com"){ alert("Yes"); }else{ alert("No"); }
非常感谢!
我希望你的意思是 JavaScript 而不是 java。 document.URL 将为您提供 JS 中的当前 URL。
感谢您的答复。我自己通过创建自定义 Webview 并检查 onPageFinished 中的 url 来做到这一点。