如何document.domain
在 WebBrowser Control 中设置 current 以避免跨域调用(XMLHTTP 请求或 Iframe/frame 访问)中的“访问被拒绝”?
我试过了
CurrentDocument = WebBrowserControl.Document
CurrentDocument.domain = "example.com"
Console.writeline("xx" & CurrentDocument.domain)
这不起作用,不知何故它永远不会到达console.writeline
难道我做错了什么?还是我应该使用WebBrowserControl.ActiveXInstance
?