我有简单的标签来在 jquery mobile 的圆角框中显示文本但是当我在 jquery 中设置 H 标签的文本属性时,文本被截断
<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)
如何防止这种行为?