using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace vsphere
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.webView21.Source = new System.Uri(textBox1.Text, System.UriKind.Absolute);
}
private async void webView21_NavigationCompleted(object sender, Microsoft.Web.WebView2.Core.CoreWebView2NavigationCompletedEventArgs e)
{
object obj = await webView21.CoreWebView2.ExecuteScriptAsync("document.body.innerHTML");//第一次获取没法获取后端的数据
textBox2.Text = obj.ToString();
}
private async void button2_Click(object sender, EventArgs e)
{
object obj = await
c# webview2获取网页HTML的绝招
最新推荐文章于 2026-05-28 15:31:10 发布
本文探讨了一个使用C#和Visual Studio开发的应用,通过Form1中的按钮操作,利用VSphere中的WebView2控件实现网页内容的动态抓取。展示了如何使用JavaScript执行和获取HTML、innerText,以及运用jQuery选择器获取特定元素的内容。
该文章已生成可运行项目,
本文章已经生成可运行项目


3149

被折叠的 条评论
为什么被折叠?



