jquery mobile 中的数据图标不会显示在 ruby on Rails 2.3.4 中
我正在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
最初的问题对我来说有点不清楚,但从评论来看,您似乎试图找出如何从标准箭头更改列表视图中的图标。
为此,请将 data-split-icon 属性添加到 ul 标记 - 将其设置为 http://jquerymobile.com/demos/1.0a3/docs/buttons/buttons-icons.html
例如:
代替标准箭头图标,它为您提供列出漂亮的明星。
希望有帮助
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:
Instead of the standard arrow icon, that gives you a list with pretty stars.
Hope that helps
我自己也遇到了同样的问题 - 这是因为 Rails 默认使用 1.4 版本的 jQuery - 您需要使用 jQuery 1.5
如果您想快速入门,请使用 jQuery CDN 托管文件:
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: