0
我試圖獲取當前選定文本的DOM節點。我正在構建一個Chrome擴展,並試圖從背景文件中這樣做。我知道我可以得到使用的選擇:遍歷所選文本中的網站文檔
chrome.tabs.executeScript(tab.id, {code:
'chrome.extension.onRequest.addListener(function(request, sender, sendResponse)
{if (request.method == "getSelection")
sendResponse({data:window.getSelection().toString()});
else sendResponse({});});'
});"
chrome.tabs.sendRequest(tab.id, {method: "getSelection"}, function(response){
return respose.data;
});
但我不知道如何獲得節點(遍歷)。
任何想法?
感謝