YanoRyuichi.com/
Wiki
Blog
GitHub
Sandbox
開始行:
* 選択状態のテキストを取得する [#x7391858]
// IE
if (document.selection) {
var text = document.selection.createRange().text;
// それ以外
} else {
var text = document.getSelection();
}
*** 選択範囲オブジェクトを取得するには [#c2517d21]
var selection_obj = windows.getSelection();
終了行:
* 選択状態のテキストを取得する [#x7391858]
// IE
if (document.selection) {
var text = document.selection.createRange().text;
// それ以外
} else {
var text = document.getSelection();
}
*** 選択範囲オブジェクトを取得するには [#c2517d21]
var selection_obj = windows.getSelection();
ページ名: