我在 c++ 中有一个 BrowserHelperObject(BHO)我需要在 i 框架中阻止一些键盘控件 (Ctrl-o)
我需要知道一种方法来阻止用户在将焦点放在我的侧边栏上(右)时立即“打开新网址”(使用 Ctrl + O)单面 iframe)。 事实上,我的侧边栏提供了一些控件,用户不应该能够通过侧边栏“导航”到其他网站。 我在 C++ 中使用 ATL(活动模板库)使用 bho,但也许有人知道像 JS(javascript)或 PHP(超文本预处理器)这样更简单的方法?所有想法均受到赞赏。
I need to know of a way to prevent the user to 'open a new url' (with Ctrl + O) as soon as he has the focus on my sidebar (right-sided iframe).
In fact, my sidebar offers some controls and the user should not be able to 'navigate' to other website through the sidebar.
I'm using a bho in C++ using ATL(active template library), but maybe if anyone knows of a simplier way like in JS(javascript) or PHP(Hypertext Preprocessor) ? All ideas are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现 IInputObject 并特别注意 HasFocusIO。
Implement IInputObject and pay special attention to HasFocusIO.