为了账号安全,请及时绑定邮箱和手机立即绑定

电视机顶盒的浏览器不支持keyup事件,可以如何模拟?

电视机顶盒的浏览器不支持keyup事件,可以如何模拟?

一只甜甜圈 2018-09-03 19:06:27
事实用以下检测代码来检测时,是支持Keyup的function detectEventSupport(eventName) {    var tempElement = document.createElement('div'),         isSupported;     eventName = 'on' + eventName;     isSupported = (eventName in tempElement); // 使用第一种方式     // 如果第一种方式行不通,那就来看看它是不是已知事件类型     if (!isSupported) {         tempElement.setAttribute(eventName, 'xxx');         isSupported = typeof tempElement[eventName] === 'function';        if(typeof tempElement[eventName] != 'undefined'){             tempElement.removeAttribute(eventName);         }     }    // 清除掉动态创建的元素,以便内存回收     tempElement = null;    // 返回检测结果     return isSupported; }但实际上使用时并不会触发。因此想模拟keyup事件var mock = null; addEvent(document, 'keydown', function(e) {     keydownHandler(e);    if (mock) clearTimeout(mock);     mock = setTimeout(function() {         keyupHandler(e);     }, 200); });但是这种方法的效果不是很好,请问还有没有更好的方法
查看完整描述

1 回答

?
慕田峪9158850

TA贡献1794条经验 获得超7个赞

厉害了我的哥!
alert 一下 navigator.userAgent 看看什么内核的呀

查看完整回答
反对 回复 2018-10-14
  • 1 回答
  • 0 关注
  • 581 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信