選択状態のテキストを取得する

 // IE
 if (document.selection) {
   var text = document.selection.createRange().text;
 // それ以外
 } else {
   var text = document.getSelection();
 }

選択範囲オブジェクトを取得するには

 var selection_obj = windows.getSelection();

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS

Last-modified: 2010-05-15 (土) 05:35:52