テキスト領域内でこのコードを使用すると、完璧に機能しますが、divに必要ですselectionstart関数とselectionend関数が未定義の値を返すのはなぜですか?
{var textarea = document.getElementById("content_text");
if ($.browser.webkit || $.browser.mozilla) {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
sel = textarea.value.substring(start, end);
}