gpt4 book ai didi

javascript - 为什么单击“确定”后网络表单会重置

转载 作者:行者123 更新时间:2023-11-28 12:47:11 26 4
gpt4 key购买 nike

我编写了以下脚本来使用 href 弹出一条消息,但是单击弹出窗口的确定后,表单将被重置,为什么会发生这种情况

我写的内容如下

<a href="" style="text-decoration: none;" onclick="return confirm('A student need for Accommodated, Modified, or Alternate assessment is determined by the student ARD committee working in collabration with the LPAC and must be documneted in the student IEP ');">
?</a>

点击“确定”之前

enter image description here

点击确定后

enter image description here

enter image description here

最佳答案

您使用 confirm() 来弹出信息,这很奇怪。 OK 和 Cancel 没有区别,所以你可以只使用 alert(),你还需要返回 false,这样它实际上不会跟随链接:

<a href="" onclick="confirm('Whatever'); return false;">?</a>

您发布的原始版本链接到当前页面(并使用现在为空的表单重新加载页面。)

您还可以使用跨度:

<span onclick="confirm('Whatever');">?</span>

关于javascript - 为什么单击“确定”后网络表单会重置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6441665/

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