• 1.1.jquerymobile多页面


    1 2

    <!DOCTYPE html> 
    <html> 
    <html lang="zh-CN">
    	<head> 
    	<title>JqueryMobile--多页面</title> 
    	<meta charset="utf-8"/>
    	<meta name="viewport" content="width=device-width, initial-scale=1"> 
    	<link rel="stylesheet" href="jquery.mobile-1.0.1.css" />
    	<script src="jquery.js"></script>
    	<script src="jquery.mobile-1.0.1.js"></script>
    </head> 
    <body> 
    	<section id="homepage" data-role="page">
    		
    
    			<header data-role="header">
    				<h1>页面一</h1>
    			</header><!-- /header -->
    
    			<div data-role="content">	
    				<p><a href="#gallery">链接到第二个页面</a></p>
    				<p>页面一</p>		
    			</div><!-- /content -->
    			
    			<footer data-role="footer">
    				<h4>页面一</h4>
    			</footer>
    			
    			
    	</section><!-- /page -->
    	
    	<section id="gallery" data-role="page">
    		
    
    			<header data-role="header">
    				<h1>页面二</h1>
    			</header><!-- /header -->
    
    			<div data-role="content">	
    				<p><a href="#homepage">链接到第一个页面</a></p>
    				<p>页面二</p>		
    			</div><!-- /content -->
    			
    			<footer data-role="footer">
    				<h4>页面二</h4>
    			</footer><!-- /footer -->
    			
    			
    	</section><!-- /page -->
    </body>
    </html>
  • 相关阅读:
    进程、线程、协程
    python垃圾回收机制
    python变量存储和深浅拷贝
    Linux常用命令
    二叉树四种遍历,节点个数,深度
    装饰器
    ArrayList、Vector
    集合、Collection、迭代器、List
    卖票
    关于Thread和Runnable
  • 原文地址:https://www.cnblogs.com/xiaozhanga4/p/2399918.html
Copyright © 2020-2023  润新知