最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Adding javascript code after a remote html page loaded in Android Webview - Stack Overflow

programmeradmin2浏览0评论

I have a problem with webview in Android. I'm working with an application that has 2 fragments; first has an EditText and second a webview.

Is it possible to pass the string of the Edittext in the page loaded in the webview by calling a javascript function that modify the DOM of the page loaded?

For example, after loading in the webview:

webview.loadUrl("");

I want insert in the edittext of the google search page a string passed from java; I tried this as first step:

webview.setWebViewClient(new WebViewClient() {  
            @Override  
            public void onPageFinished(WebView view, String url)  
            {  
               webview.loadUrl("javascript:(function() {alert();})()");  
            }  
        });  

But the alert is not displayed.

Thanks for any feedback, and sorry for my not perfect English.

I have a problem with webview in Android. I'm working with an application that has 2 fragments; first has an EditText and second a webview.

Is it possible to pass the string of the Edittext in the page loaded in the webview by calling a javascript function that modify the DOM of the page loaded?

For example, after loading in the webview:

webview.loadUrl("http://google.it");

I want insert in the edittext of the google search page a string passed from java; I tried this as first step:

webview.setWebViewClient(new WebViewClient() {  
            @Override  
            public void onPageFinished(WebView view, String url)  
            {  
               webview.loadUrl("javascript:(function() {alert();})()");  
            }  
        });  

But the alert is not displayed.

Thanks for any feedback, and sorry for my not perfect English.

Share Improve this question edited Feb 16, 2013 at 15:12 Dilip Manek 9,1435 gold badges46 silver badges58 bronze badges asked Feb 16, 2013 at 15:02 user2078588user2078588 811 silver badge3 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 9

Try this:

webview.getSettings().setJavaScriptEnabled(true);
webview.setWebChromeClient(new WebChromeClient());
webview.setWebViewClient(new WebViewClient() {
   @Override
   public void onPageFinished(WebView view, String url){
       String javaScript ="javascript:(function() {alert();})()";
       webview.loadUrl(javaScript);
   }
});
webview.loadUrl(url);

Here is the link of source!

alert() is a bit tricky. You need to capture it and transform it to a Toast.

Check this out: https://code.google./p/apps-for-android/source/browse/Samples/WebViewDemo/src//google/android/webviewdemo/WebViewDemo.java

this work for me

  webview.loadUrl("javascript:function sagvelgardkharast() { document.getElementById('gkFooter').style.display='none'; " +
                        " document.getElementById('gkBottom5').style.display='none'; " + 
                        " } sagvelgardkharast(); ");
发布评论

评论列表(0)

  1. 暂无评论