-
Validation jQuery表单验证插件
jquery.validate.js 是一款执行表单输入信息验证的jQuery插件。要求 jQuery 1.2.6+, compatible with 1.3.x 特点: 安装简单 内置超过20种数据验证方法 直列错误提示信息 可扩展的数据验证方法 使用内置的元数据或插件选项来指定您的验证规则 优雅的交互设计
-
jQuery checkbox
图形化的checkbox,使用只需要下面一行代码: $('input[type=checkbox]').checkbox(); 参数说明: cls: checkbox wrapper class (default: jquery-checkbox) empty: path/filename of "empty"(1x1 transparent) image (default: empty.png) 示例: $('input[type=checkbox]').checkbox({ cls:'jquery-safari-checkbox', empty: 'http://www.yoursite.com/images/empty.gif' }); 效果如下:
-
jquery-form jQuery表单生成插件
jquery-form 是一个用来即时生成表单的jQuery插件,使用方法: $("#form1").form({ legend: "Quiz #4", params: { "Title": "What's the answer ?", "your_answer": { label: "Your Answer", value: "42" } } }) .find(":submit").val("Save").end() .submit(function() { $("#message").html("You just submit that form"); setTimeout(function() { $("#message").empty() ...
-
Ajax Form
Ajax Form 是一款jquery插件,它能够方便的使用ajax提交表单的数据。它自定义了jquery元素的submit方法,通过一句话来提交表单的数据。同时,通过制定请求地址,它还可以将请求到的json数据填写到表单的各个区域中。
-
Uniform jQuery表单美化插件
Web表单是一个网站的重要方面,但theyrz在视觉方面往往被忽视。Uniforms可以帮助你增加一个华丽的外观和视觉效果。 例如单选按钮或选择下拉菜单,这些资源只能用简单的CSS,这通常是一件痛苦的事情。
-
jQuery formValidator 表单验证插件
jQuery formValidator表单验证插件是什么? jQuery formValidator表单验证插件,它是基于jQuery类库,实现了js脚本于页面html代码的分离。你可以划分多个校验组,每个组的校验都是互不影响。对一个表单对象,你只需要写一行代码就可以轻松实现无数种脚本控制。jQuery formValidator表单插件致力于改善重复编程、考虑浏览器兼容性等情况;你只关心业务逻辑,而无需关心实现过程,只需简单的配置,无需写代码就能实现表单的检验。 插件支持5种大的校验方式 ,分别是:inputValidator(针对input、textarea、select控件的字符长度、值范围、选择个数的控制)、compareValidator(提供2个对象的比较 ...
-
CheckboxGroup
Provide "select all" checkbox functionality to a group of checkboxes. The select all checkbox stays in sync with the group so it is appropriately checked when it needs to be. Example: $('#checkall').checkgroup({groupName:'group'}); Also can have multiple select all boxes to one group - for instance one on top of the group and one on bottom: ...
-
Multiple Select
You can use this plug-in for using input text as multiple select facility. When you focus input text, appear a dialog box like combo box. After choose you want, it will update input area your options seperated with comma. Use & pray. Just use it with pray for me.
-
Form Validation jQuery表单验证插件
Form Validation 是一个使用非常简单的 jQuery 插件,用来验证表单数据。
-
jQuery Form Plugin
jQuery Form Plugin 是一个扩展表单操作的 jQuery 插件,直接文件上传表单,示例代码: <head> <script type="text/javascript" src="path/to/jquery.js"></script> <script type="text/javascript" src="path/to/form.js"></script> <script type="text/javascript"> // wait for the DOM to be loaded $(document).ready(function() { // bind 'myForm' and provide a simple callback function $('#myForm').ajaxForm(function() { ...