我正在尝试使用 JS 函数(字符串作为参数传递)获取 HTML 字符串的内部文本。这是代码:
function extractContent(value) {
var content_holder = "";
for (var i = 0; i < value.length; i++) {
if (value.charAt(i) === '>') {
continue;
while (value.charAt(i) != '<') {
content_holder += value.charAt(i);
}
}
}
console.log(content_holder);
}
extractContent("<p>Hello</p><a href='http://w3c.org'>W3C</a>");
问题是在console(*content_holder* stays empty)
. 我认为问题是由===
操作员引起的。