JS强制换行

阅读更多
$(function() {
		$(".word_break").each(function() {
			var word = $(this).text();
			var step = 25;//步长
			var len = word.length;
		   if(len > step) {
			   var newWord = new Array();
			   for(var i = step; i < len+step; i+=step) {
				   newWord.push(word.substring(i-step,i));
				   newWord.push("
"); } $(this).html(newWord.join("")); } }); })

 

你可能感兴趣的:(JS强制换行)