javascript在chrome下怎么监听ctrl+滚轮事件?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript在chrome下怎么监听ctrl+滚轮事件?相关的知识,希望对你有一定的参考价值。

参考技术A 目前所有版本的chrome都不行啊
ctrl+滚轮 是页面缩放操作 浏览器把事件吃掉了 页面根本监听不到!本回答被提问者采纳

javascript 在Google Chrome中的页面上获取所有事件监听器

// Things you can do with the items

// 1. log them to the console
console.log(items);


// 2. Put a red border around the elements
items.forEach(function(item) {
  item.element.style.outline = '1px solid red';
})

// 3. generate a summary
var summary = .map(function(item) {
	var el = item.element,
		id = el.id,
		className = el.className;
	if (className instanceof SVGAnimatedString) {
		className = className.baseVal;
	}
	var str = el.tagName.toLowerCase() + (id ? '#' + id : '') + (className ? '.' + className.replace(/\s+/g, '.') : '');
	str += ' ' + item.listeners.map(function(l) {
		return l.event + ': ' + l.listeners.length;
	}).join(' ');
	return str;
}).join('\n');

console.log(summary);
var items = Array.prototype.slice.call(
  document.querySelectorAll('*')
).map(function(element) {
  var listeners = getEventListeners(element);
  return {
    element: element,
    listeners: Object.keys(listeners).map(function(k) {
      return { event: k, listeners: listeners[k] };
    })
  };
}).filter(function(item) {
  return item.listeners.length;
});

// See below for things you can do with the items

以上是关于javascript在chrome下怎么监听ctrl+滚轮事件?的主要内容,如果未能解决你的问题,请参考以下文章

javascript 在Google Chrome中的页面上获取所有事件监听器

javascript 在Google Chrome中的页面上获取所有事件监听器

js如何监听窗口的关闭?

chrome的network面板怎么调整

Javascript点击事件监听器只触发一次

JavaScript之事件概念和监听事件