javascript: alert('Hello!');
javascript: test=prompt('適当な言葉を入れてみて下さい');
javascript: (function(){ var test=prompt('適当な言葉を入れてみて下さい'); })();
| 関数 | 対応ブラウザ |
|---|---|
| window.getSelection().toString() | Firefox 1.0 以上、Google Chrome 1.0 以上、Safari 3.0 以上、Opera 9.0 以上 |
| document.selection.createRange().text | Internet Explorer 4.0 以上 |
| document.getSelection() | Netscape Communicater 4.0 以上、Mozilla、Firefox (下位互換のため)、Opera 6.0 以下 |
| document.selection() | Internet Explorer 4.0 以上 |
| window._content.getSelection().toString() | Firefox、Mozilla |
| window.getSelection()+"" | Safari 2.0 以下の不具合対処方法 |
戻る