jquery mobile链接的头文件

来源:互联网 发布:手机看图集软件 编辑:程序博客网 时间:2024/04/28 03:27

<html>
<head>
<title></title>
<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>
</head>
<body>

<div data-role="page">


  <div data-role="header">
    <h1>欢迎访问我的主页</h1>
  </div>




   <div data-role="footer" data-position="fixed" data-theme="a" class="ui-footer ui-bar-a ui-footer-fixed slideup ui-fixed-hidden" role="contentinfo">
    <h1>页脚文本</h1>
  </div>


</div>
</body>

0 0