jquerymobile1.3.2和jquery.mobile-1.4.5遇到的问题

在项目中用到的jquerymobile1.3.2(不知从哪下载的)和在家练习用的1.3.2,1.5.4版本(都是从官网下载)遇到的问题如下:

1、项目中的1.3.2 主题颜色无法显示正常的a、b、c、d、e主题颜色。但是家里下载的1.32版本可以正常,不过1.5.4的data-theme又无法正常显示。

2、项目中的1.3.2data-icon可以正常显示,但是1.3.2家里不能正常显示data-icon,1.5.4版本可以正常显示data-icon.

目前发现了这两个问题,归结起来可以解释为:项目中的1.3.2版本的可能来源不正,所以忽略项目中版本带来的问题。但是,不管用官网的1.3.2还是1.5.4要么是按钮的data-icon无法显示,要么是主题无法显示。

目前使用中发现了这些问题,不知道是不是jquerymobile的bug。

一些效果源码截图如下:

<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title>hello jquerymobile</title>
    <script src="js/jquery.min.js"></script>
<!--    <link rel="stylesheet" href="css/jquery.mobile-1.4.5.min.css"/>

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

    <script src="js/jquery.mobile-1.3.2.min.js"></script>
</head>
<body>
<div data-role="page">
    <div data-role="header"><h3>标题</h3></div>
    <div data-role="content">
        <p>

        <h3>listview属性用data-role="listview"来标识,其中:</h3>
        1、data-inset含义是;规定是否为列表添加圆角和外边距样式。<br/>
        2、data-filter含义是:规定是否在列表中添加搜索框。
        </p>
        <ul data-role="listview" data-inset="true" data-filter="true">
            <li><a href="#">测试</a></li>
            <li><a href="#">需求</a></li>
            <li><a href="#">实施</a></li>
            <li><a href="#">程序</a></li>
        </ul>
        <hr/>

        <p>

        <h3>添加一个滑块(slider) 其中:</h3>
        指定type类型为range,指定最小值、最大值、当前值即可。
        </p>
        <input type="range" min="0" max="100" value="20"/>
        <hr/>

        <p>

        <h3>在页面用a标签的形式,写出button的样式,其中:</h3>
        1、 带有data-role="button"的超链接<br/>
        2、data-icon:规定按钮的图标。默认是没有图标。
        </p>
        <a href="#" data-role="button" data-icon="star">星星按钮</a>
        <hr/>

        <p>

        <h3>不同主题按钮的颜色</h3></p>
        <a href="#" data-role="button" data-icon="star" data-theme="a">data-theme="a"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="b">data-theme="b"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="c">data-theme="c"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="d">data-theme="d"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="e">data-theme="e"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="f">data-theme="f"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="g">data-theme="g"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="h">data-theme="h"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="i">data-theme="i"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="g">data-theme="g"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="k">data-theme="k"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="l">data-theme="l"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="m">data-theme="m"</a>
        <a href="#" data-role="button" data-icon="star" data-theme="n">data-theme="n"</a>

    </div>
    <div data-role="footer"><h3>页脚</h3></div>
</div>
</body>
</html>

页面效果截图如下:

源码下载地址如下:

http://download.csdn.net/download/zl544434558/8705217

时间: 2024-10-22 00:45:28

jquerymobile1.3.2和jquery.mobile-1.4.5遇到的问题的相关文章

How to update jQuery Mobile in Dreamweaver CS6

来源:http://wpguru.co.uk/2013/01/how-to-update-jquery-mobile-in-dreamweaver-cs6/ Since the release of Adobe’s Dreamweaver CS6 the jQuery and jQuery Mobile libraries have been updated. This means that when you create a new Mobile Starter page, you’ll ge

jquery mobile 表单提交 图片/文件 上传

jquerymobile 下面 form 表单提交 和普通html没区别,最主要是 <form 要加一个 data-ajax='false' 否则 上传会失败 1  html代码 <!doctype html><html><head>    <meta name="viewport" content="width=device-width, initial-scale=1" charset="UTF-8&qu

jQuery Mobile中表单的使用体会

jQuery Mobile是手机端(移动端)页面制作用的框架,包括CSS和JavaScript,此处简单总结一下表单的书写,主要涉及CSS部分.框架提供了表单的一些样式,但在实际使用的时候,我们可能会用自己的自定义样式,这种情况下,框架提供的样式可能就不能满足我们的要求.今天项目中写登录页面的静态网页,碰到了几个问题,在这里和大家交流一下. 1 利用data-role="none" 在使用表单的时候,如果想使用自定义样式,就可以表单元素上给data-role属性赋值none,意思就是不

史上最简单的个人移动APP开发入门--jQuery Mobile版跨平台APP开发

书是人类进步的阶梯. ——高尔基 习大大要求新新人类要有中国梦,鼓励大学生们一毕业就创业.那最好的创业途径是什么呢?就是APP.<构建跨平台APP-jQuery Mobile移动应用实战>就是一本写给没钱没身份没资历的创业小白看的APP书,看完这本书你可以拥有自己的一个APP,不用花钱就能移植到其他移动平台,支持iOS,Android,Windows Phone!!!!!!!!找个最便宜的来练手吧!  小白APP交流Q群:  348632872 清华大学出版社推出的<构建跨平台APP:j

jquery mobile常用的data-role类型介绍

转自原文 jquery mobile常用的data-role类型介绍 data-role参数表: page        页面容器,其内部的mobile元素将会继承这个容器上所设置的属性 header     页面标题容器,这个容器内部可以包含文字.返回按钮.功能按钮等元素 footer       页面页脚容器,这个容器内部也可以包含文字.返回按钮.功能按钮等元素 content     页面内容容器,这是一个很宽容的容器,内部可以包含标准的html元素和jQueryMobile元素 cont

jQuery Mobile学习笔记

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

jquery mobile 移动web(2)

button 按钮 data-role="button" 将超链接变成button. 具有icon 图标的button 组件. 提供了18常用的图标 data-icon ="" 1.arrow-1左箭头 2.arrow-r 右箭头 3.arrow-u 上箭头 4.arrow-d 下箭头 5.delete 删除 6.plus 加号 7.minus 减号 8.check 对号 9.gear 齿轮 10.refresh 刷新 11.forward 前进 12.back 返

jquery mobile 教程

简介:jQuery Mobile框架可以轻松的帮助我们实现非常好看的.可跨设备的Web应用程序.我们将后续的介绍中向大家介绍大量的代码及实例. jQuery一直以来都是非常流行的富客户端及Web应用程序开发中使用的JavaScript类库,然而一直以来它都是为桌面浏览器设计的,没有特别为移动应用程序设计. jQuery Mobile是一个新的项目用来添补在移动设备应用上的缺憾.它是基本jQuery框架并提供了一定范围的用户接口和特性,以便于开发人员在移动应用上使用.使用该框架可以节省大量的js代

jquery mobile的一些插件(图片滚动)

jquery mobile的一些插件(图片滚动) 1,photoswipe 网址:http://www.photoswipe.com/demo: http://www.photoswipe.com/latest/examples/04-jquery-mobile.html个人描述:在手机上操作很流畅,能自使用屏幕尺寸,竖屏显示效果很好,横屏图片太大了,也就是列数固定的原因. 2,Touch-Gallery 网址:http://neteye.github.com/touch-gallery.htm

jQuery Mobile 手动显示ajax加载器

在jquery mobile开发中,经常需要调用ajax方法,异步获取数据,如果异步获取数据方法由于网速等等的原因,会有一个反应时间,如果能在点击按钮后数据处理期间,给一个正在加载的提示,客户体验会更好一些. 先看两个方法,显示和关闭,方法来自于参考:http://blog.csdn.net/zht666/article/details/8563025 <script> //显示加载器 function showLoader() { //显示加载器.for jQuery Mobile 1.2.