gpt4 book ai didi

javascript - 使用 ng-show 启用我的 div

转载 作者:行者123 更新时间:2023-11-28 19:29:21 24 4
gpt4 key购买 nike

我有一个按钮,当我点击它时,我调用一个函数,但我想启用我的 div,所以我使用 ng-show 但什么也没有出现。 ?

HTML:

<br/><button class="btn btn-primary" ng-disabled="enableCompare()" ng-click="on_compare_plateformes($item)">Comparer</button>

<div class="row" ng-show="showme">
...
</div>

JS:

$scope.enableCompare = function () {
return !($scope.myselectref && $scope.myselectcible);
};

$scope.on_compare_plateformes = function () {
...
// here i set showme to true ..?
}

最佳答案

像这样:

$scope.on_compare_plateformes = function () {
$scope.showme = true; // or any other logic you want
};

您使用该函数来设置变量$scope.showme而不是“返回”值

关于javascript - 使用 ng-show 启用我的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27173166/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com