2

以下のようなoverflow:hiddenコンテナがある場合、どのテキストが表示され、どのテキストが非表示であるかをjs/jquery経由で把握する方法はありますか?

div{
    height:2.4em;
    line-height:1.2em;
    overflow:hidden;
    width:100px;
    background:pink;   
}

<div>
    I am some text and more text and so on and on I just keep going.
</div>
4

2 に答える 2

0

私が持っているものだけを考えてください:

<div>
    <span>I am some text and more text and so on and on I just keep going.</span>
</div>

そして、スパンが div :P よりも大きくなるまで文字を削除します ( element.offsetHeightand element.offsetWidthまたは$(element).heightand を使用できます$(element).width)

于 2013-09-05T20:45:09.480 に答える