用js解决数字不能换行问题_javascript技巧
时间:2021-07-01 10:21:17
帮助过:228人阅读
代码如下:
function toBreakWord(intLen, id){
var obj=document.getElementById(id);
var strContent=obj.innerHTML;
var strTemp="";
while(strContent.length>intLen){
strTemp+=strContent.substr(0,intLen)+"
";
strContent=strContent.substr(intLen,strContent.length); }
strTemp+= strContent;obj.innerHTML=strTemp;
}
.br{word-break:break-all;word-warp:break-word;background-color:#eee;}