12 lines
299 B
HTML
12 lines
299 B
HTML
|
|
<html lang="zh-CN">
|
|||
|
|
<p id='p'>hello world</p>
|
|||
|
|
<button onclick="VoiceEngine.startSpeaking('js调用安卓方法!')">调用安卓方法</button>
|
|||
|
|
|
|||
|
|
<script>
|
|||
|
|
function render(result){
|
|||
|
|
result+="<br/>"
|
|||
|
|
document.getElementById("p").innerHTML += result
|
|||
|
|
}
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
</html>
|