JS.getTextContent(element,preformatted)使用介绍

时间:2024-02-09 12:03:01
【文件属性】:

文件名称:JS.getTextContent(element,preformatted)使用介绍

文件大小:21KB

文件格式:PDF

更新时间:2024-02-09 12:03:01

att ed ef

代码如下: /*获取标签的文字*/ function getTextContent(element, preformatted) { if (!elementIsVisible(element)) return ”; if (element.nodeType == 3 /*Node.TEXT_NODE*/) { var text = element.data; if (!preformatted) { //text = text.replace(/\n|\r|\t/g, ” “); text = normalizeNewlines(text); } return text; } if (ele


网友评论