0

我在 jquery 移动文件上使用滚动视图插件,并且在 iOS 上运行良好。但是,当我使用 iframe 时,不应用滚动 y 并且其内容保持固定。如何在 iframe 上应用滚动 y?谢谢

<div data-role="page" id="init" data-theme="a">

    <div data-role="header" id="head" data-position="fixed" data-tap-toggle="false">
    </div>
    <div data-role="content" data-scroll="y" id="cont" data-theme="a" style="border:none;">
        <iframe data-scroll="y" src="http://www.abcd.com" style="border: 0px none;" height="100%" width="100%">
        </iframe>
    </div>
    <div id="id3">
    </div>
</div>

附加了所有必要的 jquery mobile 和 scrollview 插件。

4

1 回答 1

0

Please @Jaume try this,

$(function() {
   $('#cont').scrollview({
      direction:'y'
   })
})

Else, you need to include the jquery.mobile.scrollview.js file.

于 2012-07-22T06:07:49.210 回答