jquery mobile 中的数据图标不会显示在 ruby​​ on Rails 2.3.4 中

发布于 2024-10-21 22:25:23 字数 194 浏览 3 评论 0原文

我正在 Rails 2.3.4 中的 1 个应用程序中使用 jquery-mobile。

下面的代码 li data-icon="plus" data-iconpos="right"><%= link_to "Post", [我的参数] %>

不显示数据图标“加号”。我想知道为什么。

任何想法请。

I am using jquery-mobile for 1 of my applications in Rails 2.3.4.

The following code
li data-icon="plus" data-iconpos="right"><%= link_to "Post", [my parameters] %>

does not show the data icon, "plus". I am wondering why.

Any ideas please.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林很绿却致人迷途 2024-10-28 22:25:23

最初的问题对我来说有点不清楚,但从评论来看,您似乎试图找出如何从标准箭头更改列表视图中的图标。

为此,请将 data-split-icon 属性添加到 ul 标记 - 将其设置为 http://jquerymobile.com/demos/1.0a3/docs/buttons/buttons-icons.html

例如:

<ul data-role="listview" data-inset="true" data-split-icon="star"> 
   <li><h3><a>list item 1</a></h3><a>link title</a></li> 
   <li><h3><a>list item 2</a></h3><a>link title</a></li>
   <li><h3><a>list item 3</a></h3><a>link title</a></li>
</ul>

代替标准箭头图标,它为您提供列出漂亮的明星。

希望有帮助

The original question is a little unclear to me, but from the comments, it looks like you're trying to find out how to change the icon in listview from the standard arrow.

To do this, add a data-split-icon property to the ul tag - setting it to one of the icon names from http://jquerymobile.com/demos/1.0a3/docs/buttons/buttons-icons.html

For example:

<ul data-role="listview" data-inset="true" data-split-icon="star"> 
   <li><h3><a>list item 1</a></h3><a>link title</a></li> 
   <li><h3><a>list item 2</a></h3><a>link title</a></li>
   <li><h3><a>list item 3</a></h3><a>link title</a></li>
</ul>

Instead of the standard arrow icon, that gives you a list with pretty stars.

Hope that helps

溺深海 2024-10-28 22:25:23

我自己也遇到了同样的问题 - 这是因为 Rails 默认使用 1.4 版本的 jQuery - 您需要使用 jQuery 1.5

如果您想快速入门,请使用 jQuery CDN 托管文件:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js">

I had the same problem myself - it is due to the fact that Rails uses a 1.4 version of jQuery by default - you need to be using jQuery 1.5

If you want to get started quickly then use the jQuery CDN hosted files:

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.css" />
<script src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文