如何在WebBrowser控件中设置当前document.domain
以避免跨域调用(XMLHTTP请求或iframe /帧访问)中的“访问被拒绝”?
我试过
CurrentDocument = WebBrowserControl.Document
CurrentDocument.domain = "example.com"
Console.writeline("xx" & CurrentDocument.domain)
这不起作用,不知何故它永远不会到达console.writeline
我做错了吗?或者我应该使用WebBrowserControl.ActiveXInstance
?