我正在尝试为 Joomla 开发我的第一个组件。我已经安装了 Joomla 3,一切都很顺利。
我想在前端添加一个表单验证(客户端),我有一个提交表单。
我的代码是:
<?php
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
// Add form validation
JHTML::_('behavior.formvalidation');
?>
<form class="form-validate" id="myForm" method="post">
<input name="email" type="text" class="required validate-email" size="30" />
<button type="submit" class="validate">Submit form</button>
</form>
验证有效,但不显示任何消息错误 - 只是一个字段。错误字段的 HTML 是:
<div id="system-message-container">
<div id="system-message" class="alert alert-error">
<h4 class="alert-heading"></h4>
<div></div>
</div>
</div>
那么,如何在验证中添加文本?我需要为我的组件创建一个语言文件吗?