我正在尝试使用CEF点击链接打开一个新窗口。
我在HTML中将href和target设为_blank
。
当Internet可用时,新页面正常打开,但在连接断开时打开一个空白窗口。我试过调试,据我所知,如果OnBeforePopUp函数返回false,应该没有问题。
我的HTML代码行是
<a href="https://www.google.com/" target="_blank" title="Google" aria-label="Google" id="Google"><span class="sr-only">Click here for Google</span> Help</a>
在我的代码中,
public bool OnBeforePopup(IWebBrowser browser, string url, ref int x, ref int y, ref int width, ref int height)
{
return false;
}
答案 0 :(得分:0)