WinForm开发中屏蔽WebBrowser脚本错误提示的方法
程序员文章站
2023-12-17 17:07:46
通常在c#的实际开发过程中,会发现设置其属性scripterrorssuppressed无法达到屏蔽脚本错误效果,但是可以通过下面两种方式实现这一效果。
1.在docum...
通常在c#的实际开发过程中,会发现设置其属性scripterrorssuppressed无法达到屏蔽脚本错误效果,但是可以通过下面两种方式实现这一效果。
1.在documentcompleted事件中订阅error处理,代码如下所示:
private void wbgooglemap_documentcompleted(object sender, webbrowserdocumentcompletedeventargs e) { wbgooglemap.document.window.error += new htmlelementerroreventhandler(window_error); } void window_error(object sender, htmlelementerroreventargs e) { e.handled = true; }
2.在脚本中window.onerror中处理,代码如下所示:
window.onerror = function(error, url, line) { // log(error + "url:" + url + "lineno:" + line); return true; }
通过上述两种方法能够很好的屏蔽webbrowser脚本错误提示。希望本文所述方法对大家的c#程序设计有所帮助!