2008-01-22から1日間の記事一覧

選択範囲の文字列取得

getSelection = function() { var s = document.selection ? document.selection.createRange() : window.getSelection(); s.str = function() { return document.selection ? this.text : this.toString(); }; getSelection = function() { return s; }; re…