gpt4 book ai didi

jquery-mobile - 使用 jquery mobile 在 ipad 中禁用整个页面滚动

转载 作者:行者123 更新时间:2023-12-03 08:50:16 26 4
gpt4 key购买 nike

我正在使用 jquery mobile。我有一个标题和动态创建的表格。但是当我在浏览器上检查我的代码时它工作正常但是当我检查 ipad 模拟器时整个页面正在滚动标题。如何防止标题在 Ipad 中滚动.我只需要固定高度的表格 View 滚动。这是我的 fiddle 代码

http://jsfiddle.net/ravi1989/Q9QmF/1/

    var content = "<table>";
for (i = 0; i < 30; i++) {
content += '<tr class="row" id="' + i + '"><td>' + 'result ' + i + '</td></tr>';
}
content += "</table>"
$('#here_table').append(content);


$(".row").click(function() {
alert(this.id);
});

最佳答案

为您的标题栏提供一个 ID 并尝试此脚本。

JQUERY

$(document).ready(function() {
$("#your_header").fixedtoolbar({ tapToggle: false });
});

关于jquery-mobile - 使用 jquery mobile 在 ipad 中禁用整个页面滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17129632/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com