Bootstrap twitter就像按钮一样

时间:2013-08-05 21:24:59

标签: javascript css button twitter-bootstrap

我需要一个像this example

这样的关注按钮

我应该用java脚本写什么?

  $('.following').hover(function(){
      $(this).text("Unfollow");
    },function(){
       $(this).text("Following");
    });
   //for toggle the class following/follow When click
   $('.following').click(function(){
    $(this).toggleClass('following follow').unbind("hover");
    if($(this).is('.follow')){
       $(this).text("Follow");
    }
    else{
     //binding mouse hover functionality
       $(this).bind({
            mouseleave:function(){$(this).text("Following");},
            mouseenter:function(){$(this).text("Unfollow");}      
        });
    }
  });

哪些更改需要有bootstap按钮?

1 个答案:

答案 0 :(得分:0)

您可以在CSS中执行此操作:http://jsfiddle.net/Th4th/

.follow {
    width: 100px;
    height: 40px;
    background-color: gray;
}
.follow:hover span {display:none;}

.follow:hover:before {
    content: "Unfollow"
}

我认为你不需要改变按钮的java脚本,只是为了采取点击的动作。