jQuery mobile实现 个人资料
时间: 2023-08-08 09:10:29 浏览: 109
要使用jQuery Mobile实现个人资料界面,你可以使用jQuery Mobile的组件和样式来创建一个响应式、移动友好的个人资料页面。
下面是一个简单的示例代码:
```html
<!DOCTYPE html>
<html>
<head>
<title>个人资料</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.1.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>个人资料</h1>
</div>
<div data-role="content">
<h2>用户信息</h2>
<ul data-role="listview" data-inset="true">
<li data-role="list-divider">基本信息</li>
<li><strong>姓名:</strong>John Doe</li>
<li><strong>年龄:</strong>25岁</li>
<li><strong>性别:</strong>男</li>
<li data-role="list-divider">联系信息</li>
<li><strong>电话:</strong>123-456-7890</li>
<li><strong>Email:</strong>john@example.com</li>
</ul>
</div>
<div data-role="footer">
<h4>版权所有 © 2022</h4>
</div>
</div>
</body>
</html>
```
在这个示例中,我们使用了jQuery Mobile提供的data-role属性来定义页面的不同部分,如页眉(header)、内容(content)和页脚(footer)。在内容部分,我们使用了列表视图(listview)组件来显示用户的个人信息。
你可以根据需要自定义样式和内容,通过使用jQuery Mobile的组件和样式来创建一个符合你需求的个人资料页面。
阅读全文