使用 C# 获取网页的完整 HTML 源代码,或使用 C# 获取 jQuery 代码的数据


根据

这个回复,我们只能看到服务器发送到浏览器的HTML代码。

"查看源代码"仅显示浏览器从服务器请求特定网页时服务器发送的源代码。因此,由于这些更改是在客户端进行的,因此它们不会显示在"查看源代码"上,因为它们是在原始页面交付后进行的。要查看页面的实时源代码,您可以使用 webkit 浏览器中的 Web 检查器视图,或使用 Firefox 中的 Firebug。这些跟踪对 DOM 的任何更改并更新您可以看到的源代码。

即使在客户端完成之后,我如何在 C# 中获取整个 HTML 代码。我可以用Webclient获取HTML。

也许我应该像 c# 中的无聊者一样工作。 但是怎么做呢?


更新

<script id="frmJqrTplCommentItem" type="text/x-jquery-tmpl">
{{each Comments}}
<li>
    <div class="user-comment-container" itemprop="review" itemscope itemtype="http://schema.org/Review">
        <div class="user-comment-header clearfix">
            <div class="user-info right clearfix {{if UserType === 1}}buyer{{else UserType === 2}}DK-expert{{/if}}">
                <h5>
                    {{if FullName === null || FullName === ''}}
                    <span itemprop="author">کاربر مهمان</span>
                    {{else}}
                    <span itemprop="author">${$value.FullName}</span>
                    {{/if}}
                    {{if UserType === 1}}
                    <span>(خریدار این محصول)</span>
                    {{/if}}
                    <meta itemprop="datePublished" content="${$value.EditDateTime}">
                    <time>${DkUtility.formatDate($value.EditDateTime, 1).FaNumber()}</time>
                </h5>
                {{if IsActive === null || IsActive === false || IsActive === 0}}
                <div class='undercheck'>نظر شما منتظر تایید مدیر می‌باشد </div>
                {{/if}}
            </div>....

例如,上面的代码是网页内部HTML代码的一部分。我知道这一端将在客户端执行。我可以访问{评论}吗?

简短的回答 - 你不能。评估整个页面(包括所有客户端 HTML 更改(需要您开发一个完整的 Web 浏览器。

相关内容

  • 没有找到相关文章

最新更新