gpt4 book ai didi

javascript - 如何默认隐藏jQmobile页面

转载 作者:行者123 更新时间:2023-11-28 12:40:00 25 4
gpt4 key购买 nike

如何隐藏 jquery mobile 包含的页面。我想要该网站的移动版本和桌面版本,但移动版本会自动加载。我该如何改变这个?

代码在这里:

<!DOCTYPE html>
<html>
<head>
<!-- For Mobile Devices -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.css">
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>

<link href="../bootstrap/css/bootstrap.min.css" rel="stylesheet" />
<link href="../global/global.css" rel="stylesheet" />
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script language="javascript" type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script>
</head>
<body>
<div >
<!-- The View Page (Summary) -->
<div data-role="page" id="summary">
<div data-role="header">
</div>
<div data-role="main" class="ui-content">
<div class="jumbotron container">
<center>
<img src="removeLogo.jpg" />
</center>
<h2 class="txt-center"><u>Controls</u></h2>
<a class="btn btn-default">View</a>
</div>
</div>
<div data-role="footer">
</div>
</div>

<div data-role="page" id="summary">
<div data-role="header">
</div>
<div data-role="main" class="ui-content">
<div class="jumbotron container">
<center>
<img src="removeLogo.jpg" />
</center>
<h2 class="txt-center"><u>Controls</u></h2>
<a class="btn btn-default">View</a>
</div>
</div>
<div data-role="footer">
</div>
</div>
</bod

y>

最佳答案

脚本运行时 DOM 尚未准备好。将其放入 DOM ready event handler :

$(function () {
// Interact with the DOM in here
});

// Or, the slightly longer version
$(document).ready(function () {
// Interact with the DOM in here
});

或者,将 JavaScript 移动到正文的末尾(通常在结束 </body> 标记之前,但在需要引用的元素之后的任何位置都可以)。通过这样做,当你的脚本被解析时,浏览器已经解析了前面的标记,并有一个几乎完整的 DOM 树可供你访问。

关于javascript - 如何默认隐藏jQmobile页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13222816/

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