details.js 766 B

12345678910111213141516171819202122232425262728293031
  1. $(function(){
  2. $('.newsdataBox_center').find('img').each(function(){
  3. var $that = $(this);
  4. $that.removeAttr('width');
  5. $that.removeAttr('height');
  6. $that.css({'display':'block','width':'100%','height':'auto'});
  7. })
  8. })
  9. jQuery(function(){
  10. //使用id选择器;例如:tab对象->tr->td对象.
  11. $(".oneimg_span").each(function(i){
  12. //获取td当前对象的文本,如果长度大于25;
  13. if($(this).text().length>20){
  14. //给td设置title属性,并且设置td的完整值.给title属性.
  15. $(this).attr("title",$(this).text());
  16. //获取td的值,进行截取。赋值给text变量保存.
  17. var text=$(this).text().substring(0,20)+"...";
  18. //重新为td赋值;
  19. $(this).text(text);
  20. }
  21. });
  22. });