我有一个简单的 html 页面
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width; user-scalable=0;" />
<title>My HTML</title>
</head>
<body>
<h1>MyHTML</h1>
<p id="mytext">Hello!</p>
<input type="button" id="but" value="Say hello"
onClick="showAndroidToast('Hello Android!')" />
<input type="button" value="Open Dialog" onClick="openAndroidDialog()" />
<input type="text" class="textfield" name="email" value="" />
<script language="javascript">
function showAndroidToast(toast) {
AndroidFunction.showToast(toast);
}
function openAndroidDialog() {
AndroidFunction.openAndroidDialog();
}
function callFromActivity(msg) {
document.getElementById("mytext").innerHTML = msg;
}
</script>
</body>
</html>
然后我想将文本设置为输入字段“电子邮件”并执行以下操作:
myBrowser.loadUrl("javascript:document.getElementByName(\"email\").value=\"eeee\"");
但在不起作用!请帮帮我,有什么问题吗?
ps对不起我的英语。