如何将复选框链接到网站

时间:2016-02-28 18:00:37

标签: angularjs checkbox href

我有以下代码:

<input type="checkbox" id="{{ day.name }}-{{ $index }}" ng-model="slot.booked" ng-disabled="slot.booked">
        <label for="{{ day.name }}-{{ $index }}">{{ slot.time }}<br>
          <span ng-if="slot.booked">Booked</span>
          <span ng-if="!slot.booked">Available</span>
        </label>

无论如何我可以做到这一点,当点击复选框时,它会将用户带到另一个网站吗?

3 个答案:

答案 0 :(得分:1)

另一种方法是使用https://wordpress.stackexchange.com/

<input type="checkbox" ng-model="confirmed" ng-change="change()" />

在控制器中:

 $scope.change = function() {
   //opens a new tab in browser
   window.open('http://stackoverflow.com/questions/35686170/how-do-i-link-a-checkbox-to-a-website', '_blank');
}

ngChange directive

答案 1 :(得分:0)

使用window.location.assign()

HTML

<input ... ng-click="onclick()">

JS控制器

$scope.onclick = function() {
  window.location.assign("http://www.google.com")
};

答案 2 :(得分:0)

另一种解决方案:

$scope.$watch('slot.booked', function(val){
    if(val){
       window.open('url', '_blank');
    }
});