jquerymobile

<!DOCTYPE html>

<html>

<head>

<link rel="stylesheet"

href="../../ui/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.css">

<link rel="stylesheet"

href="../../ui/jquery.mobile-1.4.5/jquery.mobile-1.4.5.css">

<script src="../../ui/jquery.mobile-1.4.5/js/jquery.js"></script>

<script src="../../ui/jquery.mobile-1.4.5/jquery.mobile-1.4.5.min.js"></script>

<link rel="stylesheet" type="text/css"

href="../../ui/main/css/style.css" />

<script type="text/javascript"

src="../../ui/main/js/jquery-1.8.0.min.js"></script>

<script type="text/javascript">

function getDown() {

var gundong = document.getElementsByClassName("gundong");

var L = gundong.length;

var show = 1;

for ( var i = 0; i < L; i++) {

if (gundong[i].style.display == ‘block‘) {

show = i;

break;

}

}

if (show + 2 < L) {

gundong[show].style.display = ‘none‘;

gundong[show + 2].style.display = ‘block‘;

}

}

function getUp() {

var gundong = document.getElementsByClassName("gundong");

var L = gundong.length;

var show = 1;

for ( var i = 0; i < L; i++) {

if (gundong[i].style.display == ‘block‘) {

show = i;

break;

}

}

if (show - 1 >= 0 && show + 2 <= L) {

gundong[show - 1].style.display = ‘block‘;

gundong[show + 1].style.display = ‘none‘;

}

}

</script>

<style type="text/css">

ul {

float: left;

margin-right: 5px;

text-align: center;

}

li {

float: left;

margin-right: 5px;

text-align: center;

}

a {

width: 80px;

}

#q {

position: fixed;

}

</style>

</head>

<body>

<div data-role="page">

<div data-role="header">

<div data-role="controlgroup" data-type="horizontal" style="width: 100%;">

<ul style="width: 100%;">

<li><input type=‘button‘ value="<"></li>

<li class="gundong" id="liudong" style="display: block"><a

href="#pageone" data-role="button">转转转转</a></li>

<li class="gundong" id="liudong" style="display: block"><a

href="#" data-role="button">播转转转</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">到转转转</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">新转转转</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">浪</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">微</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">博</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">转播到新浪微博</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">转播到新浪微博</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">转播到新浪微博</a></li>

<li class="gundong" id="liudong" style="display: none"><a

href="#" data-role="button">转播到新浪微博</a></li>

<li><input type=‘button‘ value=">"></li>

</ul>

</div>

</div>

</div>

<div data-role="content">

<p>这些按钮仅供演示,无任何效果。</p>

</div>

<div data-role="footer">

<h1>我的页脚</h1>

</div>

</div>

</body>

</html>

时间: 2024-10-13 20:29:57

jquerymobile的相关文章

jquerymobile的helloworld

现在项目需要用jquerymobile做手机版,开发过程中都是边用边学,下班没什么事,就系统学习一下jquerymobile,顺便把学习过程记录一下. 编写jquerymobile代码时,需要先在官网上下载jquerymobile的整个压缩包,其中对于开发有作用的只有三个文件,其中分别是:jquery.min.js.jquery.mobile-1.4.5.min.css.jquery.mobile-1.4.5.min.js.helloworld的具体源码如下: <!DOCTYPE html>

jQueryMobile与AngularJS的区别

(1)jQuery是一个JS函数库,简化DOM操作. (2)jQueryUI是一个HTML UI组件库,适用于PC应用. (3)TwitterBootstrap是一个CSS框架,提供了基础样式+HTMLUI组件库,简化响应式网页的开发. (4)GoogleAngularJS是一个JS框架,简化了数据在页面的操作. (5)jQueryMobile是一个HTML UI组件库,适用于移动应用. jQuery+jQueryUI => 基于DOM操作的PC应用 jQuery+Bootstrap => 基

jQueryMobile的组件之下拉菜单(selectMenu)

以下是一个最基本的下拉菜单示例,更多细节请参考jQueryMobile的手册 <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>

jQueryMobile的事件

以下列举了jQueryMobile的常用事件: <!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width,initial-scale=1.0"> <title>page示例</titl

jquerymobile动态添加元素之后

Jquerymobile动态添加元素之后有些不能被正确渲染的解决方法:listview:               添加 jq(".detail").listview("refresh");div或其他:         添加.trigger( "create" ); jq(".detail:eq("+ix+1+")").append("<li>"+data.linete[

小强的HTML5移动开发之路(53)——jQueryMobile页面间参数传递

在单页模版中使用基于HTTP的方式通过POST和GET请求传递参数,而在多页模版中不需要与服务器进行通信,通常在多页模版中有以下三种方法来实现页面间的参数传递. 1.GET方式:在前一个页面生成参数并传入下一个页面,然后在下一个页面中进行GET内容解析. 2.通过HTML5的Web Storage进行参数传递. 3.建立当前页面变量,在前一个页面将所需传递的参数内容赋值到变量中,在后一个页面从变量中将参数取出来.(程序灵活性较弱) 一.以GET方式实现页面间参数传递 <!DOCTYPE html

HTML5移动开发之路(52)——jquerymobile中的触控交互

本文为 兄弟连IT教育 机构官方 HTML5培训 教程,主要介绍:HTML5移动开发之路(52)--jquerymobile中的触控交互 当使用移动设备进行触控操作时,最常用的就是轻击.按住屏幕或者手势操作,jQuery Mobile可以通过绑定的触控事件来响应使用者的特定触控行为. 一.轻击与按住 直接上代码(一切皆在代码中,细细品吧!) [html] view plain copy print? <!DOCTYPE html> <html> <head> <t

HTML5移动开发之路(53)——jQueryMobile页面间参数传递

本文为 兄弟连IT教育 机构官方 HTML5培训 教程,主要介绍:HTML5移动开发之路(53)--jQueryMobile页面间参数传递 在单页模版中使用基于HTTP的方式通过POST和GET请求传递参数,而在多页模版中不需要与服务器进行通信,通常在多页模版中有以下三种方法来实现页面间的参数传递. 1.GET方式:在前一个页面生成参数并传入下一个页面,然后在下一个页面中进行GET内容解析. 2.通过HTML5的Web Storage进行参数传递. 3.建立当前页面变量,在前一个页面将所需传递的

html5+jqueryMobile编写App推广注册页

html5+jqueryMobile的组合可以直接开发web版的app,所以用到我当前app中的推广注册页的编写是很恰当的,其实只要你熟悉html4+jquery的组合开发,那么html5+jqueryMobile你会立刻上手.html5比html4多了很多的标签,特别是多媒体这块有了很好的支持,但是如果只是做一般的web手机页面,那么多数标签是用不上的,JqueryMobile与jquery的不同点就在一些事件名称上,当然这里封装的也是html5的原生事件,还要说一个关于html5提倡的一个规

jquery和jquerymobile中版本的问题(附示例)

1.jquery2.1.4一上版本和jquerymobile根本就不兼容无法显示效果 .大家可以把下面的jQuery中的版本号改变下可以发现jQuerymobile效果无法实现.不知道是什么问题 前端的小伙伴注意就是了!在写代码的时候用到jQuerymobile时不要用最新的jquery3.1.0版本.还有就是注意代码细节(jQuerymobile是基于jQuery的所有在引用的时候jQuery的声明必须在前面) <!DOCTYPE html><html lang="en&qu