function selected() {
var selObj = window.getSelection();
}
從網頁選擇的文本此函數返回。如何返回選定區域的html。這可能與<img>
和<a>
標籤有關嗎?window.getSelection返回HTML
下面是功能列表:
https://developer.mozilla.org/Special:Tags?tag=DOM&language=en
function selected() {
var selObj = window.getSelection();
}
從網頁選擇的文本此函數返回。如何返回選定區域的html。這可能與<img>
和<a>
標籤有關嗎?window.getSelection返回HTML
下面是功能列表:
https://developer.mozilla.org/Special:Tags?tag=DOM&language=en
下面將做到這一點在所有主要的瀏覽器,是this answer完全相同的副本:
function getSelectionHtml() {
var html = "";
if (typeof window.getSelection != "undefined") {
var sel = window.getSelection();
if (sel.rangeCount) {
var container = document.createElement("div");
for (var i = 0, len = sel.rangeCount; i < len; ++i) {
container.appendChild(sel.getRangeAt(i).cloneContents());
}
html = container.innerHTML;
}
} else if (typeof document.selection != "undefined") {
if (document.selection.type == "Text") {
html = document.selection.createRange().htmlText;
}
}
return html;
}
太棒了,非常感謝! – Zebra 2011-03-07 17:38:20
[與Tim的答案完全相同](http://stackoverflow.com/a/6668159/1269037)這個問題是重複的。 – 2015-06-01 15:17:46
@DanDascalescu:你有沒有低估這個,因爲它複製了我的另一個問題的答案? – 2015-06-01 21:50:03
也http://stackoverflow.com/questions/4652734/return-html-from-a-user-selection – 2011-03-07 17:31:15