最初は空であるか、テキストで埋められている単純なテキスト領域要素があります。
<textarea cols="60" rows="10" id="textareaEdit" >some text</textarea>
ユーザーが textarea 要素のテキスト コンテンツを変更するたびに (コピー/貼り付け、削除、挿入、更新など)、対応するイベント ハンドラーがトリガーされるイベントを知りたいですか?
ありがとう。
This event is limited to <input> elements, <textarea> boxes and <select> elements.
http://api.jquery.com/change/に記載されているように
$('body').on('copy paste cut change', 'textarea', function (e) {
//do something
});