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(){
- //使用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);
- }
- });
- });
|