Happy.js是一个轻量级的jQuery表单验证插件。
支持的浏览器IE6,8(ad8icompat.mode,whichissupposedtobelike7)
FF3.6
Chrome7
Safari5
示例代码:
$('#awesomeForm').isHappy({ fields: { // referece the field you're talkig about, probably by `id` // but you could certaily do $('[ame=ame]') as well. '#yourName': { required: true, message: 'Might we iquire your ame' }, '#email': { required: true, message: 'How are we to reach you sas email??', test: happy.email // this ca be *ay* fuctio that returs true or false } } });









评论