[點晴永久免費OA]C#.net之WinForm開發中屏蔽WebBrowser腳本錯誤提示的方法
當前位置:點晴教程→點晴OA辦公管理信息系統
→『 經驗分享&問題答疑 』
通常在C#的實際開發過程中,會發現設置其屬性scriptErrorsSuppressed為true還是無法達到屏蔽腳本錯誤的效果,但是可以通過下面兩種方式實現這一效果。 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腳本錯誤提示。 該文章在 2022/12/15 15:40:45 編輯過 |
關鍵字查詢
相關文章
正在查詢... |