解除csdn登陆复制的限制
利用chrome的页面编辑功能来变相破解,F12 - 控制台,输入下面代码即可
document.body.contentEditable = true;
如果嫌麻烦,可以直接在浏览器收藏夹建立一个书签,内容输入
javascript:document.body.contentEditable = true;
遇到不可复制的网站,直接点一下,你就发现,世界清静了…
利用chrome的页面编辑功能来变相破解,F12 - 控制台,输入下面代码即可
document.body.contentEditable = true;
如果嫌麻烦,可以直接在浏览器收藏夹建立一个书签,内容输入
javascript:document.body.contentEditable = true;
遇到不可复制的网站,直接点一下,你就发现,世界清静了…
$(function(){
$(".plot").each(function(){
var maxwidth=30;//设置最多显示的字数
var text=$(this).text();
if($(this).text().length>maxwidth){
$(this).text($(this).text().substring(0,maxwidth));
$(this).html($(this).html()+"..."+"<a href='#'> 展开全部</a>");
};
$(this).find("a").click(function(){
$(this).parent().text(text);
})
})
});