2

我试图在页面加载后将 javascript 注入到文档的头部:

var browserSettings = new BrowserSettings();
browserSettings.FileAccessFromFileUrlsAllowed = true;
browserSettings.UniversalAccessFromFileUrlsAllowed = true;
browserSettings.TextAreaResizeDisabled = true;
var webView= new WebView("about:blank", browserSettings);
webView.EvaluateScript("var script = document.createElement('script')"); // Line 1
webView.EvaluateScript("script.src='http://domain.my/scripts/my.js'");   // Line 2
webView.EvaluateScript("document.body.appendChild(script)");             // Line 3

在评估脚本第 1 行和第 2 行后,我可以在开发工具中看到脚本变量。但是当我尝试执行第 3 行时,我收到异常:

An unhandled exception of type 'System.StackOverflowException' occurred in CefSharp.dll

我的错误在哪里?

4

1 回答 1

3

解决方案是使用ExecuteScript而不是 EvaluteScript。

于 2013-11-15T13:01:53.740 回答