gpt4 book ai didi

javascript - 按钮重定向到不同的页面

转载 作者:行者123 更新时间:2023-11-30 12:16:56 34 4
gpt4 key购买 nike

JSFiddle Link

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 编辑。

如何解决此问题并使我的应用正常运行?

最佳答案

如果你不给<button>标记一个明确的“类型”属性,类型默认为“提交”。给type="button"覆盖默认值。

A <button>显式或隐式类型“提交”的行为与“提交”完全一样<input>标签。

关于javascript - 按钮重定向到不同的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32193892/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com