选中或取消选中复选框时更改文本标签

时间:2016-05-03 20:24:41

标签: html css angularjs checkbox data-binding

所以我正在开发一个AngularJS应用程序,每次用户点击输入时我都会尝试更新复选框标签。 这里的问题是我的代码在codepen.io上运行良好,但是当我将它导入我的主应用程序时,当复选框的值发生变化时,标签不会更新。

以下是我的代码以及Codepen

上的工作演示的链接

HTML标记

<form name="myForm" ng-app="follow.controllers" ng-controller="followCtrl">
<input type="checkbox" name="checkbox-follow-btn" id="checkbox-button-follow-user" class="hide-checkbox-follow-btn"
       ng-model="followUser.value" 
       ng-true-value="'UNFOLLOW'" 
       ng-false-value="'FOLLOW'">

<label for="checkbox-button-follow-user">{{followUser.value}}</label>
</form>

CSS样式

input[type=checkbox] {
    display: none;
}
input.hide-checkbox-follow-btn:checked + label:before {
content: "";
}

input.hide-checkbox-follow-btn:checked + label:after {
content: "";
}

input.hide-checkbox-follow-btn + label:before {
content: "";
}

.hide-checkbox-follow-btn + label {
  display: block;
  float: left;
  width: 150px;
  height: 30px;
  line-height: 30px;
  padding: 5px 0;
  text-align: center;
  background-color: #111;
  font-family: 'Lato', sans-serif;
  color: #fff;
  border-radius: 3px;
  /*border: 1px solid transparent;*/
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.3;
  box-shadow:0 0px 0px transparent;
}

.hide-checkbox-follow-btn:checked + label {
  display: inline-block;
  background-color: #fff;
  color: #111;
  /*border: 1px solid #fff;*/
  opacity: 1;
  box-shadow:0 2px 5px #111;
}

.hide-checkbox-follow-btn:checked + label + p {
  color: #fff;
}

我的AngularJS脚本

angular.module('follow.controllers', [])
      .controller('followCtrl', ['$scope', function($scope) {

        $scope.followUser = {
          value:"FOLLOW"
        };
      }]);

顺便说一句,我认为UI Bootstrap是一个选项,但我想知道有一个更清洁,更简单的解决方案。

请帮我解决一下。 谢谢,

0 个答案:

没有答案