码迷,mamicode.com
首页 > Web开发 > 详细

js控制元素内字数,超出部分变...

时间:2021-03-31 12:07:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:函数   pre   bst   inner   class   str   rgba   rgb   div   

js代码:

 1 function wordlimit(cname, wordlength) {
 2  var cname = document.getElementsByClassName(cname);
 3  for (var i = 0; i < cname.length; i++) {
 4    var nowLength = cname[i].innerText.length;
 5    if (nowLength > wordlength) {
 6      cname[i].innerText = cname[i].innerText.substr(0, wordlength) + ‘...‘;
 7       }
 8  }
 9 };
10 wordlimit("类名",字数);//调用函数

 

js控制元素内字数,超出部分变...

标签:函数   pre   bst   inner   class   str   rgba   rgb   div   

原文地址:https://www.cnblogs.com/yshusen/p/14597266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!