12345678910111213141516171819202122232425262728293031 |
- $(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(){
-
- $(".oneimg_span").each(function(i){
-
- if($(this).text().length>20){
-
- $(this).attr("title",$(this).text());
-
- var text=$(this).text().substring(0,20)+"...";
-
- $(this).text(text);
- }
- });
- });
|