gpt4 book ai didi

Jquery Mobile Button 打破并进一步打破布局

转载 作者:行者123 更新时间:2023-11-29 14:07:12 25 4
gpt4 key购买 nike

我刚刚开始使用 JQuery Mobile 构建移动网站。我正在做一个非常简单的设计——只有一张图片、一些文本和一个链接到类似简单页面的按钮。我注意到,当我点击第一页上的按钮时,它会中断 - 看起来它被设置为 height: 100%,就在页面转换之前。

然后,当我按下后退按钮查看初始页面时,该按钮已移动到屏幕的最顶部。我是 Jquery Mobile 的新手,所以我不太了解它们的格式,这使得调试变得非常困难。

为了进一步向自己证明我没有疯,我直接从 JQuery Mobile Docs 复制了非常基本的多页面布局。 .此页面有效,直到我使用 data-role="button"将链接更改为按钮。

这是我网站的代码。或者,您可以在 http://www.printartsportal.com/mobileContact 查看实际页面

<html>
<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
</head>
<body>

<!-- Start of first page -->
<div data-role="page" id="foo">

<div data-role="header">
<h1>Foo</h1>
</div><!-- /header -->

<div data-role="content">
<p>I'm first in the source order so I'm shown as the page.</p>
<p>View internal page called <a data-role="button" href="#bar">bar</a></p>
</div><!-- /content -->

<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /header -->
</div><!-- /page -->


<!-- Start of second page -->
<div data-role="page" id="bar">

<div data-role="header">
<h1>Bar</h1>
</div><!-- /header -->

<div data-role="content">
<p>I'm first in the source order so I'm shown as the page.</p>
<p><a href="#foo">Back to foo</a></p>
</div><!-- /content -->

<div data-role="footer">
<h4>Page Footer</h4>
</div><!-- /header -->
</div><!-- /page -->
</body>
</html>

编辑:这似乎只发生在 Chrome 和 Droid 2 Global 上的默认浏览器中(或者,至少它确实在 FF 中工作)。同样有趣的是,在 Chrome 中使用代码检查器时,突出显示按钮元素会在它应该的位置显示小蓝框,但按钮仍位于页面顶部。

更新 1:事情变得更奇怪了。 Phil Pafford 发布了一个jsfiddle代码完美运行的地方。我复制了 fiddle 用于 jquery/jqm.js/jqm.css 的确切链接,并将该 HTML 重新复制到我的文件中。我仍然遇到问题!

最佳答案

我相信这是 issue 1565 的结果和/或 issue 1420 .两者都应该在最新的(a4.1 之后)版本中得到修复。

我在运行 Android 2.2 的 HTC Evo 上的特定用例失败并返回 a4.1并以 test 成功

页面和对话框 -> 页面剖析 -> 查看样板模板 -> 返回

在您的示例中,替换行:

<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>

<script type="text/javascript" src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>

关于Jquery Mobile Button 打破并进一步打破布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6156075/

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