0

我的布局中有一个 webview 和一个 Button(超出 webview)。我想知道当我单击按钮时是否有任何方法可以执行 javascript 代码(例如使用它的 OnClick 事件)

编辑:

我有这个 HTML

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="PruebaAlert.js"></script>
    </head>
    <body>
       <!--Your content here-->

    </body>
</html>

我在 PruebaAlert.js 中有我的函数 JS

function myJSFunction(){
           alert('hello, i was hit by Android button');

}

public class MainActivity extends Activity {

int pulsado = 0;

//Controla que estamos usando el layout web_view_not_visible
boolean web_view_not_visible = true;
TextView text;
Button button;

WebView myWebView;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.web_view_not_visible);

    myWebView = (WebView)findViewById(R.id.webview);

    myWebView.loadUrl("file:///android_asset/StackOverflow.html");

    WebSettings webSettings = myWebView.getSettings();
    webSettings.setJavaScriptEnabled(true);


    if(true){
        button = (Button)findViewById(R.id.button1);


        button.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Log.d("WebView Debug" , "Entre en onClick()");
                myWebView.loadUrl("javascript:myJSFunction()");
            }
        });

    }

}

}

我单击按钮(它位于布局的底部)但不显示警报。如果我在 Chrome 或 Firefox 中打开 HTML,它可以正常工作

发生什么事?


谢谢!

4

2 回答 2

2

html

<html>
    <head>
        <script type="text/javascript">
            function myJSFunction(){
               alert('hello, i was hit by Android button');
            }
        </script>
        //OR
        <script type="text/javascript" src="yourJSFile.js"></script>
    </head>
    <body>
       <!--Your content here-->
    </body>
</html>

你的JSFile.js

function myJSFunction(){
    alert('hello, i was hit by Android button');
}

创建

myWebView.loadUrl("yourHtml.html");

然后在单击按钮时调用 javascript:

myButton.setOnClickListener(new View.OnClickListener(){
   public void onClick(View v){
      myWebView.loadUrl("javascript:myJSFunction();");
   }
});
于 2013-03-27T08:07:14.353 回答
1

你可以像这样调用javascript

myWebView.loadUrl("javascript:test('arguments')");

至于您在评论中提出的第二个问题。

Where do i put my javascript file?

webview 可以通过两种方式加载页面,一种是从应用程序加载 html 页面,另一种是指向外部站点。在这两种情况下,JS 都应该放在 HTML 将要查找的位置。

于 2013-03-27T08:44:01.397 回答