- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- JavaScript/選択範囲/選択状態のテキストを取得する へ行く。
- 1 (2010-05-15 (土) 05:34:25)
選択状態のテキストを取得する
// IE if (document.selection) { var text = document.selection.createRange().text; // それ以外 } else { var text = document.getSelection(); // var selection_obj = windows.getSelection(); }