gpt4 book ai didi

javascript - 检测 ember 文本区域的变化

转载 作者:行者123 更新时间:2023-12-03 12:06:13 25 4
gpt4 key购买 nike

我一直在开发一个新界面,其中有一个 ember 文本区域:

{{textarea value=name cols="80" rows="6"}}

但我想知道如何检测用户何时进行更改(例如使用操作)以提醒他保存或不保存他的工作?

谢谢

最佳答案

根据您的具体情况:

// in your controller

nameObserver: function () {
var name = this.get('name');
// maybe compare with old name value
this.set('isDirty', true); // use this property in your handelbars to show a 'Don't forget to save!' message
}.observes('name')

关于javascript - 检测 ember 文本区域的变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25184294/

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