- 授权协议: GPL
- 开发语言: JavaScript HTML/CSS
- 操作系统: 跨平台
- 软件首页: http://www.baigo.net/jquery/baigovalidator.html
- 软件文档: http://www.baigo.net/jquery/baigovalidator.html
软件介绍
baigoValidator 是基于 jQuery 的表单验证插件。在线演示
文件结构:
-
baigoValidator.js 验证插件
-
baigoValidator.css CSS 样式
-
status_x.png 验证失败时的图标
-
status_y.png 验证成功时的图标
-
loading.gif 正在验证图标
-
readme.txt 使用说明
使用方法:
-
载入 jQuery 库文件,jQuery 库文件请到 http://www.jquery.com 下载,例:
<script src="jquery.js" type="text/javascript"></script>
载入 baigoValidator 样式表,例:
<link href="baigoValidator.css" type="text/css" rel="stylesheet" />
载入 baigoValidator 核心文件,例:
<script src="baigoValidator.js" type="text/javascript"></script>
-
初始化 baigoValidator,fileds_set 为配置参数,类型为 JSON,名称可以自定义,例:
<script type="text/javascript">$(document).ready(function(){ obj_form = $("#form_id").baigoValidator(fileds_set); });</script>
-
配置参数,具体请参考 配置参数说明,例:
<script type="text/javascript">var fileds_set = { name: { length: { min: 1, max: 100 }, validate: { type: "str", format: "text" }, msg: { id: "msg_prj_status", too_short: "太短", too_long: "太长" } }, no: { length: { min: 4, max: 4 }, validate: { type: "str", format: "int" }, msg: { id: "msg_prj_status", too_short: "太短", too_long: "太长" } }, email: { length: {min: 1, max: 0 }, validate: { type: "str", format: "email" }, msg: { id: "msg_prj_status", too_short: "太短" } }, digit: { length: { min: 1, max: 0 }, validate: { type: "digit", format: "int" }, msg: { id: "msg_prj_status", too_short: "太短" } }, checkbox: { length: { min: 1, max: 0 }, validate: { type: "checkbox" }, msg: { id: "msg_prj_status", too_few: "太少" } }, user_name: { length: { min: 1, max: 0 }, validate: { type: "ajax" }, msg: { id: "msg_prj_status", too_few: "太少" } ajax: { url: "http://www.nbfone.com/ajax/", key: "user_name", "type" : "str" } } }</script>
-
定义需要验证的字段 id 或 group,此处需与 配置参数 中的定义一致,例:
<input type="text" id="name" /><input type="checkbox" id="name" group="test" />
-
定义需要验证的表单项的 class,class 的值必须为 validate,例:
<input type="text" id="name" class="validate" /><input type="text" id="name" group="test" class="validate" />
-
触发验证,例:
<script type="text/javascript">var obj_form = $("#cate_form").baigoValidator(fileds_set);$("#cate_form").submit(function(){ obj_form.validateSubmit(); });</script>
深入浅出MFC (第二版)
侯俊杰 / 华中科技大学出版社 / 2001-1 / 80.00元
《深入浅出MFC》分为四大篇。第一篇提出学习MFC程序设计之前的必要基础,包括Widnows程序的基本观念以及C++的高阶议题。“学前基础”是相当主观的认定,但作者是甚于自己的学习经验以及教学经验,其挑选应该颇具说服力。第二篇介绍Visual C++整合环境开发工具。此篇只是提纲挈领,并不企图取代Visual C++使用手册;然而对于软件使用的老手,此篇或已足以帮助掌握Visual C++整合环境......一起来看看 《深入浅出MFC (第二版)》 这本书的介绍吧!
