gpt4 book ai didi

javascript - 无法在 WebBrowser 控件中使用 Console.Log()

转载 作者:搜寻专家 更新时间:2023-11-01 04:47:09 25 4
gpt4 key购买 nike

所以我正在使用 C# Windows 窗体编写一个 Javascript 编码 UI。这是我按下“运行”按钮时的代码,以防有帮助:

//If the button in the upper-right corner is clicked
private void run_Click(object sender, EventArgs e)
{
//If the program isn't running
if (!running)
{
//Show the web browser
webBrowser1.Visible = true;
richTextBox1.Visible = false;
//Set the label to Running
status.Text = "Running";
//Set the html text to this below
webBrowser1.DocumentText = "<!DOCTYPE html><html><body><script>\n" + richTextBox1.Text + "\n</script></body></html>";
//Set the "run" button to "stop"
run.Text = "Stop";
//Set the status to running
running = true;
}
//otherwise
else
{
//Show the text box
webBrowser1.Visible = false;
richTextBox1.Visible = true;
//Set the label to Ready
status.Text = "Ready";
//Go to nothingness
webBrowser1.Navigate("about:blank");
//Set the "stop" button to "run"
run.Text = "Run";
//Set the status to not running
running = false;
}
}

我运行程序,在大多数情况下,一切正常。但是,当我尝试使用 console.log() 命令时,出现以下错误:

'console' is undefined

我也尝试了 Console.Log(我实际上并不知道 Javascript;只是尽力而为)但它返回了相同的错误,即“Console”未定义。

此外,一旦我让 console.log 正常工作,我该如何在 WebBrowser 控件上打开控制台?我尝试在互联网上搜索,但没有找到任何关于这些问题的答案。

最佳答案

可以从 Visual Studio 中获取 JavaScript 控制台输出。

默认情况下,webBrowser1 控件使用 IE7 来呈现它的输出。 IE7 没有 console.log() 函数。为了让 console.log() 函数起作用,您需要添加以下元标记:

<meta http-equiv="X-UA-Compatible" content="IE=11">

'IE=8' 或更高版本应使您可以使用 console.log()。

当您调试 Windows 窗体应用程序时,它会使用 .NET 托管代码调试器进行调试。为了以不同的方式进行调试,而不是按“播放”进行调试,请尝试选择“调试”>“不调试开始”。现在,一旦您的应用程序正在运行,转到“调试”>“附加到进程”并找到您的 WindowsFormsApplication.exe,使用脚本代码调试器而不是 .NET 托管代码调试器附加到它

现在,在 Visual Studio 中:

  • 您可以打开“调试”>“Windows”>“JavaScript 控制台”
  • 您还可以打开“调试”>“Windows”>“DOM 资源管理器”

关于javascript - 无法在 WebBrowser 控件中使用 Console.Log(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33024139/

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