单击“操作”按钮,该按钮从html页面加载到Android中的webview

时间:2012-09-22 14:44:09

标签: android html webview

webView=(WebView) findViewById(R.id.webView1);
webView.loadUrl("file:///android_asset/hello.html");

我显示了按钮,但我不知道为该按钮提供点击操作。请帮我一些代码。

1 个答案:

答案 0 :(得分:0)

在html中,标签<input> onclick属性用于在我们点击该特定按钮时执行某些操作。该动作将用JavaScript语言编写。

<html>
<script type = "text/javascript">
 function myfunction(){ 
    // your action 
}
</script>
<body>
<input type = "button" value = "Click" onClick = "myfunction()">
</body></html>

浏览一些在线教程,例如W3schools