我有简单的标签在jquery mobile的圆框中显示文本但是当我在jquery中设置H标签的text属性时,文本被截断
<div data-role="page" id="question" data-position="fixed" >
<div data-role="content">
<div class="ui-bar-c ui-corner-all ui-shadow" style="padding:1em;">
<h4 id="quest"></h4>
</div>
</div>
</div>
//clearing the question box
$("#quest").empty();
$("#quest").append(questions[0].quest)
如何防止这种行为?
答案 0 :(得分:1)
css中有一个属性:
.class{
text-overflow:ellipsis;
}
覆盖它以更改样式。