评论:文字超长 显示省略号 展开 收起  [查看原文]

所属分类:其他,输入-杂项,自动完成

 53367  484  26
当前第2页 / 共2页
    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币 评论用户自律公约

取消回复