How to detect Chrome Inspect Element is running or not?(如何检测 Chrome Inspect Element 是否正在运行?)
问题描述
有什么方法可以检测 Chrome Inspect Element 窗口是否正在运行?
Is there any way to detect whether the Chrome Inspect Element window is running?
例如,如果用户在 Chrome 中单击检查元素",则窗口会显示 Hello World 警报.
For example if the user clicks "Inspect Element" in Chrome, the window shows a Hello World alert.
这可能吗?
推荐答案
window.onresize = function(){
if((window.outerHeight-window.innerHeight)>100)
alert('hello');
}
实际操作:http://jsbin.com/ediquk/
请注意,resize 事件似乎被触发了两次,因此您应该检查您是否已经提醒了用户.
Note that it seems like the resize event gets fired twice, so you should check whether you alerted the use already.
这篇关于如何检测 Chrome Inspect Element 是否正在运行?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何检测 Chrome Inspect Element 是否正在运行?
基础教程推荐
- 如何添加到目前为止的天数? 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- 检查 HTML5 拖放文件类型 2022-01-01
- Bokeh Div文本对齐 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
