Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以我有一个讨论列表(就像一个论坛页面),我在这个页面上有一个按钮,可以将我链接到一个创建项目表单。我想要做的是,当我单击该按钮并打开表单时,我如何从该页面中提取正文内容(将是 OP 帖子),然后使用 JQuery 将其放入表单的描述框中。
这样做可以绕过复制内容单击按钮,然后粘贴描述。即使我现在能弄清楚如何识别身体内容。因此,就像获取该内容的脚本并运行警报向我显示内容一样。
谢谢
获取body html内容如下
var bodyhtml = $('body').html(); alert(bodyhtml);
这将获得所有 html 标签,包括隐藏字段(如果有)。
var bodycontent = $('body').text(); alert(bodycontent );
获取正文的可见字符串内容。