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が必要なものに変更されたときに、Javaで次のようなことをしたい:
if(current_url_cordova_webview=="http://www.google.com"){ alert("Yes"); }else{ alert("No"); }
どうもありがとう!
返信ありがとうございます。カスタムWebviewを作成し、onPageFinishedでURLをチェックすることで、自分でそれを行うことができました.
Java ではなく JavaScript を意味していることを願っています。 document.URL は、JS の現在の URL を取得します。