한개식 요청 할수 있는것을 , 모아서 요청 보내기 테스트 모든 테스트 var arr = [], timer = null, delay = 50; $("#t").click(function(){ run( 1 ); }); function run( no ) { arr.push( no ); if ( !timer ) { timer = setTimeout( function(){ send() }, delay ); } } $("#a").click(function(){ for (var i=11; i
/** * jquery.simple.validator.js . 폼의 유효성 검사 * 예) * 폼.vaildator().check(); * */ ;(function($){ var Validator = (function(){ //의존 관계 정의 var he = Hello.world // 비공개 프로퍼티 ,form, opts, errors = [], elements = [], messages= [], checked_result = false, that; // 비공개 메서드 // var 선언을 마침 //초기화 필요하면 초기화 진행 that = { version : '1.0' , setOption : function(name , option ) { opts[name] = option; } , getOption :..
var validator = { types : {}, messages : [], config: {}, validate: function( data ) { var i, msg, type, checker, result_ok; this.messages = []; for ( i in data ) { if ( data.hasOwnProperty(i) ) { type = this.config[i]; checker = this.types[type]; if ( !type ) { continue; } if ( !checker ) { throw { name : "validationError", message : type + ' noting ' }; } result_ok = checker.validate( data[i] )..