如何验证输入字段是否最多为500?这可能是使用PHP-CI控制器吗?
<tr>
<td>Price</td>
<td>:</td>
<td><input name="price"type="text"></td>
</tr>
答案 0 :(得分:0)
试试这个
<input type="text" maxlength="10">
了解更多详情http://www.wufoo.com/html5/attributes/03-maxlength.html
答案 1 :(得分:0)
in form:表示属性max,exaple,html5
<input name="price" type="text" min="100" max="500" />
控制器中的(可能仅限ci 3)
$this->form_validation->set_rules('price', 'price', 'greater_than_equal_to[100]|less_than_equal_to[500]');