28 lines
492 B
HTML
28 lines
492 B
HTML
<!DOCTYPE html>
|
||
<html>
|
||
|
||
|
||
<head>
|
||
|
||
<meta charset="utf-8">
|
||
<title>葛夫锋</title>
|
||
|
||
|
||
<script>
|
||
function callAndroid(){
|
||
test.hello("js调用了android中的hello方法");
|
||
}
|
||
|
||
</script>
|
||
|
||
|
||
</head>
|
||
|
||
|
||
<body>
|
||
|
||
<button type="button" id="button1" onclick="callAndroid()">js调用android中的代码</button>
|
||
|
||
</body>
|
||
|
||
</html> |