jQuery mobile新闻展示代码
时间: 2023-07-09 08:30:28 浏览: 106
以下是一个简单的 jQuery Mobile 新闻展示页面的代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>News</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>News</h1>
</div>
<div data-role="content">
<ul data-role="listview" data-inset="true">
<li>
<a href="#article1">
<h2>Article 1</h2>
<p>Summary of article 1.</p>
</a>
</li>
<li>
<a href="#article2">
<h2>Article 2</h2>
<p>Summary of article 2.</p>
</a>
</li>
<li>
<a href="#article3">
<h2>Article 3</h2>
<p>Summary of article 3.</p>
</a>
</li>
</ul>
<div id="article1" data-role="collapsible">
<h2>Article 1</h2>
<p>Full text of article 1.</p>
</div>
<div id="article2" data-role="collapsible">
<h2>Article 2</h2>
<p>Full text of article 2.</p>
</div>
<div id="article3" data-role="collapsible">
<h2>Article 3</h2>
<p>Full text of article 3.</p>
</div>
</div>
<div data-role="footer">
<h4>Footer content</h4>
</div>
</div>
</body>
</html>
```
这个页面包含一个标题,一个新闻列表和三个折叠式文章。使用 jQuery Mobile 的 `data-role` 属性可以轻松地创建可折叠的内容和列表视图。
阅读全文