📜  限制跨度中显示的字符 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:36.297000             🧑  作者: Mango

代码示例1
$(document).ready(function(){
  
  $('.txtReduce').each(function (f) {

      var newstr = $(this).text().substring(0,20);
      $(this).text(newstr);

    });
})


in HTML :