是否可以在InAppBrowser下显示jQuery Mobile标题(带按钮的标题)?
我已尝试使用iframe,如下所示......
<div id="con" data-role="main" class="ui-content">
<iframe id="iIFrame" frameborder="0" src="http://en.wikipedia.org/" scrolling="yes"></iframe>
</div>
它运行良好,但它不是在iPhone中水平滚动。 任何帮助,将不胜感激。感谢。
答案 0 :(得分:0)
试
<script>
$(document).bind("mobileinit", function(){
$.mobile.touchOverflowEnabled = true;
});
</script>