使用iframe和jquerymobile进行水平滚动

时间:2013-09-27 23:32:49

标签: jquery-mobile

我有关于stackoverflow的另一个问题,这与此类似,但不同。

我的问题是内容的宽度比寡妇宽。 scoll上下工作,但水平滚动不

代码段是

 <div class="custommenu scrollablediv"  id="mycontent" data-role="content" style="padding:0;">
            <iframe scrolling="yes"  id="myiframe" src="/user/custom/curl.php?<?=$customMenuID?>"  width="100%" height="600" seamless ></iframe>
 </div>

我还尝试将一些javascript添加到iframe页面,该页面返回页面的高度和宽度,然后将iframe宽度设置为该页面。

仍然没有水平滚动。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

您可以尝试在iframe的父级上添加css。

-webkit-overflow-scrolling:touch

了解更多详情 http://demos.jquerymobile.com/1.0.1/docs/pages/touchoverflow.html

相关问题