Sharepoint 表单 - 检查垃圾邮件并阻止提交
查找:
如果在此文本框中输入“这些词”
禁用提交按钮
否则,提交。
这适用于空的必填字段:
<xsl:if test="@Required='TRUE'">
<span style="color:#FF0000;font-size:14px;"> *</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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
上面的代码用于以红色显示 *,而不是禁用提交按钮。如果您需要禁用提交按钮,您必须附加 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