* 選択状態のテキストを取得する [#x7391858]

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


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS