jQuery 箭头键绑定(网页浏览器类 IE)
我有一个使用 microsoft webbrowser 类( IE activex )的应用程序。 我试图绑定 keydown 事件并将自定义控件添加到箭头键,但使用箭头键时不会触发 keydown 事件。
我尝试使用以下代码来捕获 keydown 事件:
$(document).keydown(function(e){
alert("keydown"); });
$("#element").keydown(function(e){
alert("keydown"); });
document.onkeydown = function(evt) {
evt = evt || window.event;
var keyCode = evt.keyCodeq
if (keyCode >= 37 && keyCode <= 40) {
alert("ok");
return false;
}
};
keydown 事件有效,例如删除键,但在使用箭头键时无效。 当我在 ActiveX 浏览器中使用箭头键时,文档会滚动,但无法添加自定义控件。
在常规 IE(非 activex)中一切正常。
有什么建议吗?
I have an application which uses the microsoft webbrowser class ( IE activex ).
I'm trying to bind the keydown event and add custom control to the arrow keys, but the keydown event is not fired when using the arrow keys.
I tried following code to capture the keydown event:
$(document).keydown(function(e){
alert("keydown"); });
$("#element").keydown(function(e){
alert("keydown"); });
document.onkeydown = function(evt) {
evt = evt || window.event;
var keyCode = evt.keyCodeq
if (keyCode >= 37 && keyCode <= 40) {
alert("ok");
return false;
}
};
The keydown event works, delete key by example, but not when using the arrow keys.
When I use the arrow keys in the activex browser, the document scrolls, but it's not possible to add custom control.
In regular IE (non activex) everything works fine.
Any suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
其实没什么可做的。
1.
2.
Actually there is nothing to do much.
1.
2.