在 iframe 上无法捕获 mousemove

在父级给 document 添加 mousemove 时间,实现一个拖拽功能。当拖到 iframe 上方时,发现变得卡顿

发现是 iframe 搞的鬼。解决方法也很简单,在 mousedown 和 mouseup 给 iframe 添加个样式

function onMouseDown() {
	document.querySelector(‘iframe‘).style[‘pointer-events‘] = ‘none‘
	// ...
}

function onMouseUp() {
	document.querySelector(‘iframe‘).style[‘pointer-events‘] = ‘auto‘
	// ...
}

  

在 iframe 上无法捕获 mousemove

上一篇:VS Code Vue项目推送到码云(可视化页面 手动完成) Vue脚手架搭建


下一篇:研究失败的创业案例,是走向创业成功的第一步