webView=(WebView) findViewById(R.id.webView1);
webView.loadUrl("file:///android_asset/hello.html");
我显示了按钮,但我不知道为该按钮提供点击操作。请帮我一些代码。
答案 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