link_to 不格式化按钮
我的网站使用 Rails 和 jquery mobile。要创建按钮样式的链接,我必须添加特定信息,如下所示:
<a href="user/login" data-role="button" data-theme="a">login</a>
要在 Rails 中执行此操作,我应该像这样使用 link_to:
<%= link_to 'Login', :controller => "user", :action => "login", "data-icon" => "button", "data-theme" => "a" %>
但这不起作用,它显示为普通链接。当我查看代码时,它看起来像这样:
<a href="/user/login?data-icon=button&data-theme=a" class="ui-link">Login</a>
有什么想法为什么会发生这种情况吗?谢谢!
I use rails and jquery mobile for my site. To create a button styled link, I have to do add specific info, like this:
<a href="user/login" data-role="button" data-theme="a">login</a>
To do this in Rails, I should use the link_to like this:
<%= link_to 'Login', :controller => "user", :action => "login", "data-icon" => "button", "data-theme" => "a" %>
But this is not working, it shows as a normal link. When I look in the code it looks like this:
<a href="/user/login?data-icon=button&data-theme=a" class="ui-link">Login</a>
Any ideas why this happens? Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试一下,
这里解释了这种不同的原因:
http://apidock.com/rails/v3.0.0/ActionView/Helpers /UrlHelper/link_to
Try
The reason this is different is explained here:
http://apidock.com/rails/v3.0.0/ActionView/Helpers/UrlHelper/link_to