gpt4 book ai didi

javascript - 如何在通过 Ajax 加载的文件内容上使用 xpath?

转载 作者:行者123 更新时间:2023-11-28 02:21:26 24 4
gpt4 key购买 nike

典型案例:

       $.ajax({
url: schedule.link,
context: document.body
}).done(function(data) {
// tutt ok, quindi scrivo il file
console.log (data);
}).error(function (jqXHR, textStatus, errorDescription ) {
// segnalo il problema
logga("Error " + error.description);
});

如何对通过 ajax 接收的数据使用 xPath?

我需要简单地将 //ul.result 作为 xpath

最佳答案

您必须按如下方式执行此操作(如果您使用的是 jQuery):

$.ajax({
url: schedule.link,
context: document.body
}).success(function(data) {
// gives you the html inside the matching expression
alert($('xpathexpr', data).html());
}).error(function (jqXHR, textStatus, errorDescription ) {
// segnalo il problema
logga("Error " + error.description);
});

关于javascript - 如何在通过 Ajax 加载的文件内容上使用 xpath?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15601574/

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