我对 Jquerymobile、html5 和 css 非常陌生。现在我正在处理 jquerymobile 项目,因为我需要在页面中显示我从 rest 服务获取的 html 代码,并且我正在使用以下代码进行操作。
<div data-role="content" style="width:700px">
<div id="html_content">
</div>
</div>
和 javascript 是
$("#paystub-html").live('pageinit',function(){
$.getJSON(url,function(events){
$(events).each(function(i,item){
$(item.Data).appendTo($("#html_content"));
});
});
});
我可以显示 html 但不能完全显示它不能水平滚动。我也尝试使用溢出标签,但没有解决。
有没有其他方法可以做到这一点?如何 ?
提前致谢。