【发布时间】:2018-02-05 18:23:00
【问题描述】:
当我运行它并单击提交时,它仅在我没有在表单中输入两个值时才起作用。如果我只输入一个字段或没有数据,那么它会按预期返回,但是当我同时输入城镇和电子邮件时,userText 在屏幕上闪烁然后消失。我错过了什么??感谢您的帮助....
<html>
<form>
<fieldset>
<label>What's Your Home Town?
<input type="text" id="town" size="40" maxlength="60" required>
</label>
<label>Email Address?
<input type="email" id="email" size="40" maxlength="60" required>
</label>
<label>Submit
</label>
<input type="submit" value="Submit" onclick="validateForm();">
</fieldset>
<p id = "text"></p>
</form>
<script>
function validateForm() {
var userTown = document.getElementById('town').value;
var userEmail = document.getElementById('email').value;
var userText = userTown +'\'s a Great Town!' + ' click this link to email someone who cares ' + userEmail;
//alert(userText + ' Follow This Link to Send an Email to Someone who Cares ' + userEmail);
document.getElementById('text').innerHTML=userText;
}
</script>
</html>
【问题讨论】:
-
提交按钮提交,所以我并不感到惊讶....
标签: javascript innerhtml getelementbyid