基于Bootstrap的jQuery表单验证插件 Validation-for-Bootstrap

openkk 12年前

基于Bootstrap的jQuery表单验证插件

使用方法

首先需要引入jQuery和Bootstrap库,然后在Js代码中加入下面一行代码。$('#form')为jQuery选中你需要验证的DOM元素。

$('#form').validation();
最后只需要在html代码中指定相关的属性即可如:

<input id="name" class="input-xlarge" name="name" type="text" />
<input id="tel" class="input-xlarge" name="tel" type="text" />
其中check-type为需要验证的规则,可以绑定多个规则,之间用分号隔开。

其中required-message为验证为通过显示的信息,在这里required-message的'-'之前为前面定义的验证规则名称。

项目主页:http://www.open-open.com/lib/view/home/1339844770033