.data在字段上设置属性:
//show city/state on input maxlength$("input#billZipCode").live("keyup", function( event ){ if(this.value.length == this.getAttribute('maxlength')) { if(!$(this).data('triggered')) { // set the 'triggered' data attribute to true $(this).data('triggered',true); if ($(this).valid() == true ) { zipLookup(this, "USA"); } } } else { $(this).data('triggered',false); }});if如果您要继续运行直到邮政编码有效,请将其移至第二条语句中。



