English 中文(简体)
Jquery 移动式ICONS 没有出现
原标题:JqueryMobile ICONS not appearing

我正在为机器人创建一个移动应用程序, 并使用 jquery 手机与 phonegap 。 但我的问题是。 我已经下载了. cs 和 js 的 jquery 移动的图像 。 并且当我在本地的 chrome 或 safari 中运行时, 图标没有出现 。 我并没有做任何自定义的图标或任何的图标 。 我只是把. cs 和 js 的图像放进我的项目中 。 代码是 :

<link rel="stylesheet" href="css/jquery.mobile-1.1.0.css" />

我把jquery手机的图像 放到我的“图像”文件夹里,在我的项目里。

谢谢 谢谢

最佳回答

将图像文件夹放在路径上, css 文件已被复制的位置 。

例如,例如

d:myprojectjquery.mobile-1.0.1.min.css

d:myprojectimages
问题回答

如果您想要使用 CDN (内容传送网络) 方法, 您可以使用 HTML 头部的三行 :

<head>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.css" />
    <script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
    <script src="http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js"></script>
</head>

刚刚我遇到了一个问题, 图标没有出现在 FF 或 Safari 中, 而这个在线解决方案可以解决我的具体问题。 如果您重新包装, 以便像 OP 那样使用 PhoneGap, 显然您需要上述正确路径中的物理文件, 但如果您使用 < a href=> http://jsfiddle.net" 或“ nofollow>jsfiddle 或类似的网站重新写入生产前代码, 则这是一个替代方案 。

这些是截至2012年6月13日的最新链接,我从"rel=“nofollow”>jQuery下载网站获得的。





相关问题
jQuery Mobile - Dynamically creating form elements

I m creating a web-database driven offline web-app targeted at iOS devices. I m trying to use jQuery Mobile, but I have a problem in creating the various forms. The form options are taken from a ...

How to use jQuery Mobile to create iPhone Web Apps?

I have been assigned to create a web app for the iPhone, and I was supposed to try jQuery Mobile for developing as it supports many platforms. Is PHP a requirement for creating iPhone web apps? What ...

Change button text jquery mobile

I m using the new jquery mobile 1.0 alpha 1 release to build a mobile app and I need to be able to toggle the text of a button. Toggling the text works fine, but as soon as you perform the text ...

Full width horizontal buttons with jquery mobile?

In Jquery mobile, I can have grouped horizontal buttons, but they the group does not take 100% width. I tried adding a class that sets width:100% but that did not work. How can I do it? Thank you! ...

Difference between jQTouch and jQuery mobile

What is the difference between jQTouch & jQuery Mobile Framework ? Are they related (other than being both based on jQuery) ? Do they have the same goal ? Edit: jQTouch is now jQT

Long Press in JavaScript?

Is it possible to implement "long press" in JavaScript (or jQuery)? How? (source: androinica.com) HTML <a href="" title="">Long press</a> JavaScript $("a").mouseup(function(){ // ...

jQuery and mobile browser compatibility?

I want to build a relatively simple version of my site for mobile phones, but I will definitely need JavaScript and jQuery for many functions. Googling didn t help to find an answer. How is ...

热门标签