2

我正在使用“jquery.mobile.scrollview.min.js”使我的 div 可滚动。我的应用程序在任何版本大于 5 的 IOS 上运行良好,当我尝试在 IOS 版本 4.3 上运行它时,滚动区域的行为很奇怪。

我的 Div 如下

<div id="BranchesScrollDiv" class="ui-listview">

        <table class='MrPfixedcolumn' width="100%" style="border-spacing: 0; font-family: Arial;
            color: #000; font-weight: bold; font-size: small">
            <wc id="wcMrPTableContainer" runat="server"> 
                <tr id='MrPcolumn1row1' class="#CssClass#">
                    <td class='MrProw1' align='left'  onclick="BLBranchID=#BranchID#; BLBranchENname=#BranchENname#;BLBranchARName=#BranchARName#;BLCity=#City#;BLArea=#Area#;BLLong=#Long#;BLLati=#Lati#;BLTele=#Tele#;BLEmail=#Email#;BLFax=#Fax#;BLWorkH=#WorkH#; HandleBranchesListRowClicked();" style="width:50%;height:30px;border-right:1px solid #fff;">
                        <span id='MrPcolumn1row1span' >#BranchValue#</span>
                    </td>
                    <td class='MrProw1' align="left"  onclick="BLBranchID=#BranchID#; BLBranchENname=#BranchENname#;BLBranchARName=#BranchARName#;BLCity=#City#;BLArea=#Area#;BLLong=#Long#;BLLati=#Lati#;BLTele=#Tele#;BLEmail=#Email#;BLFax=#Fax#;BLWorkH=#WorkH#; HandleBranchesListRowClicked();" style="width:25%;height:30px;border-right:1px solid #fff;">
                        <span id='Span1' >#CityValue#</span>
                    </td>
                    <td class='MrProw1' align="left" onclick="BLBranchID=#BranchID#; BLBranchENname=#BranchENname#;BLBranchARName=#BranchARName#;BLCity=#City#;BLArea=#Area#;BLLong=#Long#;BLLati=#Lati#;BLTele=#Tele#;BLEmail=#Email#;BLFax=#Fax#;BLWorkH=#WorkH#; HandleBranchesListRowClicked();" style="width:25%;height:30px;">
                        <span id='Span2' >#AreaValue#</span>
                    </td>
                </tr>
            </wc>
        </table>
    </div>

我在准备好的文档中应用了滚动,如下所示

$("#BranchesScrollDiv").scrollview({ direction: 'y' });
$("#BranchesScrollDiv > .ui-scrollbar").addClass("ui-scrollbar-visible");

任何人都可以告诉我我能做些什么来解决这个问题吗?

提前致谢。

4

1 回答 1

2
$("#BranchesScrollDiv").scrollview({ scrollMethod: 'translate', direction: 'y' });

代替

$("#BranchesScrollDiv").scrollview({ direction: 'y' });

我希望帮助其他人回答这个问题

于 2013-01-20T16:37:45.537 回答