我想创建一个动态表单,当我将代码直接放在 onclick 事件上时,通过按下按钮(或图像)将输入添加到表单中
alert("Hello");
它可以工作...但是,当我尝试调用 javascript 函数时它不会...即使我调用简单函数 hello(); (以及 add() )
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
function add() {
var container = document.createElement("div");
container.innerHTML = "<input type='text' name='email'><br/>";
document.getElementById('emails').appendChild(container);
}
function hello() {
alert("Hello");
}
</script>
</head>
<body>
<form id="myform" name="myform" action="valid.php" method="POST">
<div id="emails">
<input type='text' name='email' value=''/><br />
</div>
<img width="50px" src="myimage.jpg" onclick='add();'/>
<input type="submit" value="Submit"/>
</form>
</body>
</html>
任何人都设法发现为什么?