gpt4 book ai didi

javascript - 如何使用 AngularJS 在输入框中显示值

转载 作者:行者123 更新时间:2023-11-28 01:05:55 25 4
gpt4 key购买 nike

我刚刚开始学习 AngularJS。我想通过在页面的输入字段中显示旧信息来实现一个用于编辑用户信息的页面。每当用户想要更新信息时,他们都可以看到输入框中显示的旧信息,并且可以更改将存储在 ng-model 中的值。我之前使用过,没有 ng-model 并且它有效

<input type="text" value="{{event_detail.title}}" class="inputbox form-control">

但是它不适用于 data-ng-model

<input type="text" value="event_detail.title" required id="title" name="title" class="inputbox form-control" data-ng-model="eve.title" placeholder="Title">

有办法解决这个问题吗?

最佳答案

你不需要值(value)

<input type="text" ng-model="event_detail.title" class="inputbox form-control">

或者

<input type="text" ng-model="event_detail.title" required name="title" 
class="inputbox form-control" placeholder="Title">

关于javascript - 如何使用 AngularJS 在输入框中显示值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25085938/

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