
Css
cexojatai
这个作者很懒,什么都没留下…
展开
-
OOP in JS
OOP in JS, Part 1 : Public/Private Variables and Methods This page shows how to create private variables and methods in classes in Javascript through the rather simple example of a person. Part 2 co...2006-12-07 18:33:00 · 161 阅读 · 0 评论 -
jQuery Validation alert第一个错误的方法
$("#form").validate({ invalidHandler: function(form, validator) { $.each(validator.invalid,function(key,value){ alert(value); return false; }); //这里循...原创 2010-05-14 19:27:12 · 141 阅读 · 0 评论