// 限制行数
$(document).ready(function(){
var lineHeight = parseInt($('p').css('line-height'), 10);
var maxLines = 3;
$('p').each(function(){
var text = $(this).text();
var height = $(this).height();
var lines = height / lineHeight;
if(lines >maxLines){
var textArr = text.split('');
var result = '';
for(var i = 0; i< maxLines * 20; i++){
result += textArr[i];
}
result += '...';
$(this).text(result);
}
});
});
// 限制字数
$(document).ready(function(){
$('p').each(function(){
var text = $(this).text();
if(text.length >100){
var result = text.substr(0, 100) + '...';
$(this).text(result);
}
});
});