在 Orbeon Xforms 中按两次转义字符时如何处理重置行为

发布于 2024-12-01 05:23:57 字数 682 浏览 1 评论 0 原文

我知道从 IE 5 开始,有一个奇怪的行为,当按转义字符两次时,所有表单字段都会自动重置。 Mozilla 中不会出现这种情况。因此,作为补救措施,我放置了一个简单的 JavaScript,它会在值重置时提醒用户。下面是它的代码。

<html>
<body>
<form action="Enroll" method="post" onreset="return confirm('Really reset all form  fields?')">
<table>
<tr>
<td>Name </td>
<td><input type="text" id="name"/></td>
<td>Id </td>
<td><input type="text" id="id"/></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>

现在,请帮助我如何实现 Orbeon Xforms,因为这也发生在 Orbeon xforms 中。

I have come to know that from IE 5, there is a strange behaviour that when escape character is pressed twice, all the form fields are reset automatically. This is not occuring in Mozilla. So as a remedy i have put a simple javascript that will alert user when values are getting reset. Below is the code for it.

<html>
<body>
<form action="Enroll" method="post" onreset="return confirm('Really reset all form  fields?')">
<table>
<tr>
<td>Name </td>
<td><input type="text" id="name"/></td>
<td>Id </td>
<td><input type="text" id="id"/></td>
</tr>
<tr>
<td><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
</body>
</html>

Now, please help me how i can acheive this is Orbeon Xforms as this is happening in Orbeon xforms also.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

和我恋爱吧 2024-12-08 05:23:57

这曾经是一个bug,并且已经已于 2012 年 4 月 20 日修复,该修复可在该日期之后的夜间构建和版本中使用。

This used to be a bug, and it has been fixed on 2012-04-20, and the fix is available in nightly builds and releases made after that date.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文