Joomla JHTML::日历输入验证

发布于 2024-12-08 19:59:16 字数 377 浏览 0 评论 0原文

我使用日历作为 chronoforms 中的自定义字段,我可以编辑代码并使其成为必需的,但如何验证输入?

这是我添加的代码:

<?
        echo JHTML::calendar('','expirydate', 'expirydate', '%Y-%m-%d',
            array('size'=>'12',
            'maxlength'=>'10',
            'class'=>' validate[\'required\']',
            ));
?>

是否有一种本机方法来检查值或阻止人们在框中键入并仅使用弹出日历按钮?

谢谢

I'm using the calendar as a custom field in chronoforms, I can edit the code and did that to make it required, but how can I validate the input?

This is the code I added:

<?
        echo JHTML::calendar('','expirydate', 'expirydate', '%Y-%m-%d',
            array('size'=>'12',
            'maxlength'=>'10',
            'class'=>' validate[\'required\']',
            ));
?>

is there a native way to check the value or to stop people from typing in the box and only using the popup calendar button?

Thanks

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

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

发布评论

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

评论(1

沒落の蓅哖 2024-12-15 19:59:16

您可以简单地使用 readonly="true" 属性将日历字段设置为只读。
这样,您只需将该字段设置为必填字段,无需其他验证。

You could simply make the calendar field read-only using the readonly="true" attribute.
That way you just make the field mandatory and no other validation is needed.

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