テキストエリア コントロールのキーアップ イベントへのバインドに問題があります。私は以下を試しています
var shortDescInput = $('nobr:contains("Short Description")').closest('tr').find($('textarea[title="Short Description"]'));
// this doesn't work
shortDescInput.bind('keyup', function () {
countShortDescChars();
});
// Nor this
shortDescInput.keyup(function () {
countShortDescChars();
});
ここで本当に明白な何かが欠けていますか?これは、イベントをラジオボタンにバインドするなど、他のコントロールでも機能します。私はチェックしましたが、正しいテキストエリアを反抗的に選択しています
var shortDescInput = $('nobr:contains("Short Description")').closest('tr').find($('textarea[title="Short Description"]'));
私はキーアップイベントを取得していないようです....