Sharepoint 表单 - 检查垃圾邮件并阻止提交

发布于 2024-10-18 08:01:42 字数 292 浏览 2 评论 0原文

查找:

如果在此文本框中输入“这些词”

禁用提交按钮

否则,提交。

这适用于空的必填字段:

<xsl:if test="@Required='TRUE'">
           <span style="color:#FF0000;font-size:14px;">&#160;*</span>
         </xsl:if>       

但似乎无法使其测试不需要的单词。

Looking for:

If 'these words' are entered in this text box

Disable the submit button

Otherwise, submit.

This works for empty required fields:

<xsl:if test="@Required='TRUE'">
           <span style="color:#FF0000;font-size:14px;"> *</span>
         </xsl:if>       

But can't seem to make it work to test for unwanted words.

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

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

发布评论

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

评论(1

我喜欢麦丽素 2024-10-25 08:01:42

上面的代码用于以红色显示 *,而不是禁用提交按钮。如果您需要禁用提交按钮,您必须附加 javascript 来执行相同的操作

the above code is for displaying * in red color not for disabling the submit button. in case you need to disable the submit button you have to attach javascript to do the same

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