$(function(){ $('.newsdataBox_center').find('img').each(function(){ var $that = $(this); $that.removeAttr('width'); $that.removeAttr('height'); $that.css({'display':'block','width':'100%','height':'auto'}); }) }) jQuery(function(){ //ʹ��idѡ����;����:tab����->tr->td����. $(".oneimg_span").each(function(i){ //��ȡtd��ǰ������ı�,������ȴ���25; if($(this).text().length>20){ //��td����title����,��������td������ֵ.��title����. $(this).attr("title",$(this).text()); //��ȡtd��ֵ,���н�ȡ����ֵ��text��������. var text=$(this).text().substring(0,20)+"..."; //����Ϊtd��ֵ; $(this).text(text); } }); });