c# WebBrowser -如何摆脱JavaScript错误提示
本文关键字:JavaScript 错误 提示 何摆脱 WebBrowser | 更新日期: 2023-09-27 18:13:28
我正在使用c# WebBrowser,有时当页面加载(并非总是)时,我会得到以下提示:
An error has occured in the script on this page.
Line 1
Char 45774
Error Object required
Code 0
URL http://xxx.i_replaced_the_link_here.com/blah_BLAH_blah123
Do you want to continue running scripts on this page?
Yes / No
我想继续,但我不能一直点击"是"按钮。
你觉得我怎么能修好它?
可以设置WebBrowser.ScriptErrorsSuppressed
控件属性为true
。这样你就不会得到任何错误了