我希望从页面中获取每个单词或每个句子(不是HTML代码),然后通过POST将其发送到服务器,获取响应并使用响应更改该单词/句子/整个文本。
点击TamperMonkey上下文菜单后,我的代码运行:
// ==UserScript==
// @name name
// @namespace https://github.com/...
// @version 1.0
// @description description
// @copyright 2016+, 31SDS14
// @grant unsafeWindow
// @grant GM_registerMenuCommand
// ==/UserScript==
GM_registerMenuCommand('Change that words!', function() {
alert(document.body.innerHTML);
//here send every word or whole sentences to the server via POST and replace those words with received response
}, 'r');
如何在没有HTML代码的情况下从正文中获取文字?
答案 0 :(得分:0)
一个简单的答案是:
document.body.innerText;