jQuery扩展 jQuery.fn.extend({ 'jsonBind':function(json){ var dom=this; dom.find('[json-bind]').each(function(){ var val=$.trim(json[$(this).attr('json-bind')]); if(val!='') $(this).html(val); }); dom.find('[json-bind-attr]').each(function(){ var s=$(th…