Wiki0
2015/12/22 15:12:51
.drug-text {
white-space: nowrap;
width: 100%;
overflow: hidden;
text-overflow: ellipsis
}
<div>
<p class="drug-text" value="true">texttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttexttext</p>
<p class="drug-toggle">展开</p>
</div>
<script language="javascript">
$(".drug-toggle").click(function () {
var sign = $(this).val();
sign = !sign;
$(this).val(sign);
if (sign) {
$(this).prev().css("white-space", "inherit");
$(this).html("收起");
} else {
$(this).prev().css("white-space", "nowrap");
$(this).html("展开");
}
});
</script>
云淡风轻0
2015/12/22 15:12:10
回复
讨论这个项目(26)回答他人问题或分享插件使用方法奖励jQ币 评论用户自律公约