1

I have a text area, it's rather large with quite a bit of data. I want the ctrl+z undo buffer to be updated more frequently, probably every time the user hits enter. By default as far as I can tell the buffer is updated only when the textarea on blur or on ctrl+y/ctrl+z.

I don't want to blur the textarea every time they hit enter.

4

1 に答える 1

1

元に戻す状態がより頻繁に設定されるように、ぼかしてフォーカスを背中合わせに設定できますか?

基本的に、キーが押されるのを聞いて、エンターキーで切り替えます。場合によってはグリッチがあるかもしれませんが、うまくいくと思います。Enter キーの後にすばやく入力された文字をキャッチするには、メイン ボックスの後ろにあるボックスの小さなテキスト入力にフォーカスを設定し、再度フォーカスするときに、不足しているテキストを追加します。

于 2012-10-03T19:18:11.943 に答える