gpt4 book ai didi

angularjs - 如何在 Ionic 中创建具有 + 和 - 按钮的输入框

转载 作者:行者123 更新时间:2023-12-04 12:05:32 25 4
gpt4 key购买 nike

如何创建具有 + 和 - 按钮的输入框。单击哪个用户可以更改所选产品的数量,如下所示:

input box having a + and - button

最佳答案

至于 ionic v.1 在您的模板中,您可能有以下内容:

<div class="flex_row">
<button class="button icon ion-minus-circled red" ng-click="sub(item)">
<p> {{item.quantity}} </p>
<button class="button icon ion-plus-circled green" ng-click="add(item)">
</div>

在你的 css
    .red:before {
color: red;
}

.green:before {
color: green;
}

.flex_row {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
}

在你的 Controller 中
$scope.sub = function(i) {
i.quantity--;
}

$scope.add = function(i) {
i.quantity++;
}

关于angularjs - 如何在 Ionic 中创建具有 + 和 - 按钮的输入框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38860396/

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