我想知道是否使用angularjs中的jqLite选中了复选框。我正在使用指令检查并验证值是true
还是false
。我尝试了此代码angular.element('#myCheckbox').val()
,但返回的值为false
。
<input type="checkbox" id='myCheckbox' my-directive>
angular.js
.directive('myDirective', function(){
return {
restrict: 'A',
link: function(scope, element, attrs) {
console.log(angular.element('#myCheckbox').val());
},
};
})