如果搜索字段中没有条目,我希望禁用搜索按钮;
在我的 html 文件中,我有:
<div class="form-group">
<input type="text" class="form-control" ng-model"searchinput">
</div>
<button type="submit" class="btn" ng-click="search()" ng-disabled="disabled"> Search</button>
在我的控制器中,我有:
if ($scope.searchinput == ""){
$scope.disabled = true;
}
这是行不通的。我究竟做错了什么?