1

典型:

       $.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);
        });

如何在data通过 ajax 接收时使用 xPath?

我需要简单地获取//ul.resultxpath

4

1 回答 1

1

你必须这样做(如果你使用 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);
    });
于 2013-03-24T18:07:43.677 回答