gpt4 book ai didi

javascript - 如何使用 CasperJS 获取 innerHTML?

转载 作者:搜寻专家 更新时间:2023-11-01 05:04:29 25 4
gpt4 key购买 nike

我只想获取 <em> 中字符串的属性HTML页面标签

enter image description here

我想得到“(868)”

1.

casper.then(function() {
var word = require('utils').dump(this.getElementAttribute(x('//*[@id="content"]/div[2]/h4/em'), 'em'));
console.log(word)
});

2.

casper.then(function() {
var word = require('utils').dump(this.getElementAttribute(h4[class="head"], 'em'));
console.log(word)
});

我都试过了,但都返回“null”如何解决这个问题?

最佳答案

<em>不是元素属性。它本身就是一个元素。 casper.getElementAttribute(selector, attribute)将正确检索元素的属性文本,但您想要获取元素文本。

您可以使用 casper.fetchText(selector)为了那个原因。注意 fetchText()会将所有匹配元素的内容连接成一个字符串。如果你不想这样,你要么需要确保选择器只匹配单个元素,要么使用其他函数,如 casper.getElementInfo(selector).text。 .


你的第二个片段无法工作,因为你忘记了 "围绕选择器并由于上述原因。

关于javascript - 如何使用 CasperJS 获取 innerHTML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32571765/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com