HTML
<body>
<div class="mainWrapper">
<div class="newWrapper">
<form id="newform" method="post" action="new.php">
<div class="textboxContainer">
<input id="question" type="text" name="question" placeholder="Question..." /><br /><br />
<input type="text" name="ans1text" placeholder="Answer 1..." value=""/><br />
<input type="text" name="ans2text" placeholder="Answer 2..." value=""/><br />
<input type="text" name="ans3text" placeholder="Answer 3..." value=""/><br />
<input type="text" name="ans4text" placeholder="Answer 4..." value=""/><br />
</div><br /><br />
<div class="doubleButtonContainer">
<button class="moreAnswersButton" href="javascript:void(0)" name="more_answers" onclick="showAllAnswers()">More...</button>
<input type="submit" class="button" name="submit" value="Finish" /><br />
</div>
</form>
</div>
</div>
</body>
</html>
的jQuery
function showAllAnswers()
{
console.log("WHAT IS GOING ON?????");
$(".textboxContainer").append("<input type='text' name='ans5text' placeholder='Answer 5...' value=''/><br />");
$(".textboxContainer").append("<input type='text' name='ans6text' placeholder='Answer 6...' value=''/><br />");
$(".textboxContainer").append("<input type='text' name='ans7text' placeholder='Answer 7...' value=''/><br />");
$(".textboxContainer").append("<input type='text' name='ans8text' placeholder='Answer 8...' value=''/><br />");
$(".moreAnswersButton").remove();
}
出于某种原因,<button>
正在重定向到另一个页面。我觉得它可能与它在HTML帖子表单中有关,但我不知道为什么当我已经分配了提交按钮时它会重定向。
我正在寻找的最终结果是“更多...”按钮可以向表单添加另外4个文本框。我使用jquery代码进行html编辑。
如何解决此问题并使我的应用正常运行?
答案 0 :(得分:2)
如果您没有为<button>
标记提供明确的&#34;类型&#34;属性,类型默认为&#34;提交&#34;。给它type="button"
覆盖该默认值。
具有显式或隐式类型的<button>
&#34;提交&#34;行为就像一个&#34;提交&#34; <input>
代码。