Javascript selection的兼容性寫法介紹
更新時間:2013年12月20日 17:12:46 作者:
本文為大家講解下Javascript selection的兼容性寫法,感興趣的朋友可以參考下
復制代碼 代碼如下:
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)文章
Typescript中interface與type的相同點與不同點的詳細說明
這篇文章主要介紹了Typescript中interface與type的相同點與不同點,并配有實例說明,需要的朋友可以參考下2022-11-11JavaScript中使用指數(shù)方法Math.exp()的簡介
這篇文章主要介紹了JavaScript中使用指數(shù)方法Math.exp(),是JS入門學習中的基礎(chǔ)知識,需要的朋友可以參考下2015-06-06