现在,我有了一个按钮,可以用来跟随用户或取消关注。
现在,当目标用户已被关注时。就是这样显示的。



这样就不会关注目标用户,就像这样显示。



我希望在已经关注目标用户后将其显示为“正在关注”。
然后,当我将鼠标光标移到按钮上时,显示应更改为“取消关注”。

我该如何使用Bootstrap?

视图

<% if user_signed_in? %>
    <% unless user == current_user %>
      <% if current_user.following?(user) %>
        <%= link_to(unfollow_user_path(user), :remote => true, :class => 'btn') do %>
       <i class="icon-remove"></i>
       Un-Follow
     <% end %>
      <% else %>
        <%= link_to(follow_user_path(user) ,:remote => true, :class => 'btn btn-primary') do %>
        <i class="icon-ok icon-white"></i>
        Follow
        <%end%>
      <% end %>
    <% end %>
<% else %>
        <%= link_to(new_user_session_path , :class => 'btn btn-primary') do %>
        <i class="icon-ok icon-white"></i>
        Follow
        <%end%>
<% end %>


的HTML

<a href="/user/1/follow" class="btn btn-primary" data-remote="true">
    <i class="icon-ok icon-white"></i>
    Follow
</a>

<a href="/user/1/unfollow" class="btn btn-primary" data-remote="true">
    <i class="icon-remove icon-white"></i>
    Un-Follow
</a>


更新:

<a href="/user/1/unfollow" class="btn" data-remote="true" onhover="someFunction()">
    <i id="Following" class="icon-remove"></i>
    Following
</a>

最佳答案

使用onHover事件您也可以使用jQuery来更改要更改文本的按钮的“ class”属性。



<a href="/user/1/follow"  onHover="someFunction();" class="btn btn-primary" data-remote="true">
    <i id="Following" class="icon-ok icon-white"></i>
    Following
</a>


someFunction() {
  $('i#Following').attr("class", "icon-ok icon-white").innerText("Unfollow");
}


您有望得到图片。

编辑:
这是完整的代码,应在鼠标悬停时触发someFunction中的代码。

<html>

<head>
<script type="text/javascript">

function someFunction()
{
 alert("Hello");
}
</script>
</head>

<body>
<a href="/user/1/unfollow" class="btn" data-remote="true" onmouseover="someFunction();return true;" >
    <i  id="Following" class="icon-remove"></i>
    Following
</a>
</body>

</html>

关于css - 如何使用 bootstrap 使类似Twitter的悬停“关注”按钮?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14381500/

10-12 12:39