欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Javascript selection的兼容性寫法介紹

 更新時間:2013年12月20日 17:12:46   作者:  
本文為大家講解下Javascript selection的兼容性寫法,感興趣的朋友可以參考下
復(fù)制代碼 代碼如下:

function getSelectedText() { //this function code is borrowed from: http://www.codetoad.com/javascript_get_selected_text.asp

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

相關(guān)文章

最新評論