2009年6月5日 星期五

Javascript取得被選中的字串

Javascript Get Selected Text.

var txt = '';
if (window.getSelection)
{
txt = window.getSelection();
}
else if (document.getSelection)
{
txt = document.getSelection();
}
else if (document.selection)
{
txt = document.selection.createRange().text;
}
else return;

網誌存檔