jq实现展开全部内容,收起全部内容

Posted cd初心

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jq实现展开全部内容,收起全部内容相关的知识,希望对你有一定的参考价值。

1.内容超出就隐藏一部分。

效果

2.实现代码: 

 

js部分涉及到多个

var contents=[];
var maxheight=150;
for (var i=0;i< Allbox.find(\'.neirong_nr\').length;i++){
contents.push(Allbox.find(\'.neirong_nr\').eq(i).html())
};
console.log(contents)
var hide = function (){
Allbox.find(\'.neirong_nr\').each(function(){
if($(this).text().length>maxheight){
$(this).text($(this).text().substring(0,maxheight));
$(this).html($(this).html()+\'...\');
$(this).parent().find(\'.zk_kuanwen\').html("查看更多");
} else {
$(this).parent().find(\'.zk_kuanwen\').hide();
}
});
};
hide();
Allbox.on(\'click\', \'.zk_kuanwen\', function () {
var index=$(this).parent().parent().index();
// console.log()
if($(this).parent().find(\'.neirong_nr\').html().length<contents[index].length){
console.log( contents[index])
$(this).parent().find(\'.neirong_nr\').html(contents[index]);
$(this).html("收起文章");
more = false;
}else{
hide();
}

});

以上是关于jq实现展开全部内容,收起全部内容的主要内容,如果未能解决你的问题,请参考以下文章

Android 支持展开收起的TextView

Android 支持展开收起的TextView

Android 支持展开收起的TextView

Android 支持展开收起的TextView

JavaScript内容的展开/收起

JavaScript内容的展开/收起