gpt4 book ai didi

javascript - Android 中的 Phonegap-Jquery 兼容性问题

转载 作者:太空宇宙 更新时间:2023-11-03 11:14:41 24 4
gpt4 key购买 nike

我正在开发一个具有滑动面板的 phonegap 项目,该面板在按下该面板中的任何按钮后关闭并加载数据。
我已经让它在我的 Nexus 4 上运行,但主要问题发生在我检查 LG Optimus G Pro 时, slider 在单击后不会自行关闭,必须明确关闭。奇怪的是所有三星设备都出现了同样的问题。

下面是 slider 的代码

    <script>
$(document).on("pageinit", "#demo-page", function() {
$(document).on("swipeleft swiperight", "#demo-page", function(e) {
// We check if there is no open panel on the page because otherwise
// a swipe to close the left panel would also open the right panel (and v.v.).
// We do this by checking the data that the framework stores on the page element (panel: open).
if ($.mobile.activePage.jqmData("panel") !== "open") {
if (e.type === "swipeleft") {
$("#dvAppSideMenu").panel("open");
} else if (e.type === "swiperight") {
$("#left-panel").panel("open");
}
}
});
});
</script>
<div data-role="panel" id="left-panel" data-theme="b">

<div id="dvPageButton" class="pageHeaderMenu shadowSmall">

<div class="scrollArea">
<a id="aWall_Main" data-action="home" class="mainWall">
<div data-target="1">
Home
</div>
</a>
<a href="#maincontent" data-target="1" data-subtarget="0" data-section="secDataZero" class="dont shadowInset" data-rel="close">ABC</a>
<a href="#maincontent" data-target="1" data-subtarget="1" data-section="secDataOne" class="dont shadowInset" data-rel="close">PQR</a>
<a href="#maincontent" data-target="1" data-subtarget="2" data-section="secDataTwo" class="dont shadowInset" data-rel="close">XYZ</a>
<a class="dont shadowInset setting-btn" href="#" >Setting</a>
</div>

</div>

<div class="theme-button">
<a class="th-btn1" href="#" data-rel="close"><span>Theme A</span></a>
<a class="th-btn2" href="#" data-rel="close"><span>Theme B</span></a>
<a class="th-btn3" href="#" data-rel="close"><span>Theme C</span></a>
<a class="th-btn4" href="#" data-rel="close"><span>Theme D</span></a>
<a class="th-btn5" href="#" data-rel="close"><span>Theme E</span></a>
</div>

</div>

注意:这是 phonegap 应用程序可能无法在浏览器上运行。

有谁知道问题出在哪里?

最佳答案

您是否尝试过 Alpha 2 jQuery Mobile 1.4 版本。他们已经(并且正在)在此版本的面板上做很多工作。

关于javascript - Android 中的 Phonegap-Jquery 兼容性问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18249661/

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