gpt4 book ai didi

javascript - ng-blur 未在内联编辑中设置真/假值

转载 作者:行者123 更新时间:2023-11-30 21:05:50 25 4
gpt4 key购买 nike

如果通过触发 ng-blur 在输入文本框外单击,我试图在内联编辑中将 View 设置为只读 View (修改前的值)。但没有按预期工作.

尝试了我的代码 here

<ul ng-init="showInput=false">
<li ng-repeat="todo in todos">
<span ng-show="!showInput" ng-click="showInput=!showInput">{{todo.title}}</span>
<span><input ng-show="showInput" ng-model="todo.title" ng-blur="showInput=true"></span>
</li>
</ul>

最佳答案

我已经尝试了一个 plunker,根据我对你的问题的假设检查它,如果错误请详细说明你的问题

添加了模糊函数

    $scope.blurFunc = function(){
$scope.showInput = true;
}

plunkr

关于javascript - ng-blur 未在内联编辑中设置真/假值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46621508/

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