使用htmlagilitypack在页面上获取特定文本

时间:2018-03-24 02:42:26

标签: c# html-agility-pack

我在页面上有以下内容:

$(document).ready(function() {

    /* Reddit lazy load hack */
    var oScript = document.createElement("script");
    document.write = function(text) {
        document.getElementById("reddit").innerHTML += text;
    };
    oScript.src = "https://www.reddit.com/r/ethereum.embed?limit=9";
    document.body.appendChild(oScript);

    setTimeout(function() {
    document.title = "Ethereum (ETH) $538.58 (2.21%) | ....";
    }, 10000);
});

我感兴趣的唯一部分是脚本对象的.src的" ethereum" 部分 这可能与html敏捷包有关,还是我必须诉诸indexof/substring

0 个答案:

没有答案