gpt4 book ai didi

javascript - 如何仅在使用 angularJS 单击按钮时显示输入字段?

转载 作者:太空宇宙 更新时间:2023-11-03 21:16:17 25 4
gpt4 key购买 nike

我需要隐藏编辑的输入字段,直到单击编辑按钮,然后我想显示输入字段。它必须在点击时切换以显示输入字段。

如果显示输入,我还想更改编辑文本以关闭字段。

这是我的代码

<div class="personInfo">
<h3>name <input type="text" ng-model="user.name" ng-show="edit"></h3>
<h3>email: <input type="text" ng-model="user.email" ng-show="edit"></h3>
<h3>birthday: <input type="text" ng-model="user.birthday" ng-show="edit"></h3>
<h3>password: <input type="text" ng-model="user.password" placeholder="hidden" ng-show="edit"></h3>
<button type="submit" class="save-button">Save</button>
<button ng-click="edit">edit</button>
</div>

ps: 我试图将编辑放在 ng-click 中以仅在单击编辑时显示,但它不起作用

最佳答案

<button ng-click="edit = !edit">{{ edit ? 'close' : 'edit' }}</button>

关于javascript - 如何仅在使用 angularJS 单击按钮时显示输入字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41873792/

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