jQuery mobile 学习03 按钮基础

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
%>

<!DOCTYPE html>
<html>
<head>
	<title>JQM TITLE</title>

	<meta name="viewport" content="width=device-width, initial-scale=1">

	<link rel="stylesheet" href="jqm/jquery.mobile-1.4.5.css" />
	<script src="jqm/jquery-1.11.2.js"></script>
	<script src="jqm/jquery.mobile-1.4.5.js"></script>

	<style type="text/css">
		.ui-icon-custom{background:;}
	</style>

</head>
<body>

	<div data-role="page" id="index" data-add-back-btn="true">
		<div data-role="header"  data-add-back-btn="false">
			<h1>页面标题区域</h1>
		</div>
		<div data-role="content">

			<p>页面内容区域</p>
			<br/>
			<br/>
			<!-- 给按钮添加图标,及调整图标的显示位置 -->
			<a data-role="button" data-icon="home" >按钮一</a>
			<a data-role="button" data-icon="back" data-iconpos="right">按钮二</a>
			<a data-role="button" data-icon="refresh" data-iconpos="top">按钮三</a>
			<a data-role="button" data-icon="delete" data-iconpos="bottom">按钮四</a>
			<a data-role="button" data-icon="plus" data-iconpos="notext">按钮五</a>

			<br>
			<!-- 按钮显示在一行上显示,如果数量比较多,就会折行 -->
			<a data-role="button" data-icon="minus" data-inline="true">按钮六</a>
			<a data-role="button" data-icon="search" data-inline="true">按钮七</a>
			<a data-role="button" data-icon="alert" data-inline="true">按钮八</a>

			<br>

			<!-- 自定义一个图片样式 的按钮  注意head区域的自定义样式代码结合 -->
			<a data-role="button" data-icon="custom">按钮九</a>

			<br>

			<!-- 设置分组按钮 -->
				<!-- 默认垂直方向排列 -->
			<div data-role="controlgroup">
				<a data-role="button">组内按钮一</a>
				<a data-role="button">组内按钮二</a>
				<a data-role="button">组内按钮三</a>
				<a data-role="button">组内按钮四</a>
			</div>

				<!-- 水平方向排列 屏幕宽度太小自动折行  按钮长度和文字长度有关系-->
			<div data-role="controlgroup" data-type="horizontal">
				<a data-role="button">一</a>
				<a data-role="button">二</a>
				<a data-role="button">三</a>
				<a data-role="button">水平组内按钮四</a>
				<a data-role="button">水平组内按钮五</a>
			</div>

		</div>

		<div data-role="footer">
			<h2>页面底部区域</h2>
		</div>

	</div>

</body>
</html>

时间: 2024-11-03 21:04:32

jQuery mobile 学习03 按钮基础的相关文章

Jquery Mobile学习总结

jQuery Mobile 依赖 HTML5 data-* 属性来支持各种 UI 元素.过渡和页面结构.以下例子: <!DOCTYPE html><html><head><meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="http://apps

jQuery Mobile学习之grid、等待显示的ajax效果、页面跳转、页面跳转传递参数等(二)

Index.cshtml <!-- Start of second page --> <section data-role="page" id="bar"> <header data-role="header"> <h1>Bar</h1> </header> <!-- /header --> <div role="main" class=

jQuery Mobile学习笔记

1.获取jQuery mobile 文件,访问jQuerymobile网站下载 (貌似使用jquery mobile后,jquery会自动在网页中添加一些class类,第一次知道的我是被吓呆的!!) 2.需要使用数据属性,数据属性是HTML5引入的,以data-开头 比如data-role可以用于定义页眉,页脚,内容,页面等 data-role="page" 是在浏览器中显示的页面. data-role="header" 是在页面顶部创建的工具条 (通常用于标题或者

Jquery Mobile 学习笔记(一)

1.模拟器,IOS:XCODE GENYMOTION  ANDROID:ECLIPSE GENYMOTION 2.jquery mobile data-role:page 代表一个页面 data-position:fixed 代表固定工具栏 data-transition:slide 跳转动画效果 data-rel:dialog 弹窗口 button:A <button>  B <input type="button" />  C <a class=&qu

Android+Jquery Mobile学习系列(4)-页面跳转及参数传递

关于页面转场,这个必须得专门列出来说明一下,因为Jquery Mobile与普通的Web发开有一些区别,这个对于新手如果不了解的话,就会钻到死胡同.撸主前段时间就是很急躁地上手开发程序,结果在页面转场和参数传递的时候遇到各种奇怪的问题,最后几乎打算删掉html,改用Android原生layout来做程序了. 不得不说,Jquery mobile给我们这种做Java Web项目的人带来了很多新鲜的玩意儿,虽然多多少少有些不适应,但是我们得被动接受,久而久之就习惯. 前面一对废话结束,下面正式开始本

jquery mobile学习笔记一

先看下面几个属性 ui-body ui-bar ui-corner-all ui-body-[a-z] custom-corners ui-bar创建一个通栏的块,可以作为内容块的区分,通过ui-bar-[a-z]用户可以修改皮肤. ui-body的用法跟ui-bar的用法一样 ui-corner-all给块添加圆角属性 custom-corners内部的元素,也继承父级元素的圆角属性. 2.按钮部分 默认情况 <input type="button" value="b

jQuery mobile 学习12 表单的使用方法及访问设备判断

<%@ page language="java" import="java.util.*" pageEncoding="utf-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getS

jQuery mobile 学习02 页面事件

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%> <% String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getS

JQuery Mobile 学习

data-role="page"      :是显示在浏览器中的页面 data-role="header"   :创建页面上方的工具栏(常用于标题和搜索按钮) data-role="content"  :定义页面的内容,比如文本.图像.表单和按钮,等等 data-role="footer"    :创建页面底部的工具栏