F12打不开、打开后页面跳转、控制台持续刷新

以 中国土地市场网 网站为例

1.打开F12:

问题1: 尝试使用F12查看请求接口,但是打不开F12

解决方案:

1.方法一: (可用,但不符合需求)

比较常见的是查看源代码,快捷键是Ctrl+U,也可以用view-source

比如对方网站是abc.xxxxx.com

那么可以直接用view-source:https://abc.xxxxx.com/

2.方法二(可用)

打开网页后,点一下浏览器地址,再点F12也可以破除

3.方法三(可用)

谷歌浏览器点右上角的三个点,然后点更多工具,开发者工具,也可以的,快捷键Ctrl+Shift+i

4.方法四(可用)

使用快捷键Ctrl+Shift+C

5.方法五(可用)

提前按F12,然后再输入地址进入网站

6.方法六(不可用)

浏览器菜单开发者工具,进入开发者工具点击控制台,输入以下内容:

// 开启右键菜单

document.oncontextmenu = function(){ return true; };

// 开启文字选择

document.onselectstart = function(){ return true; };

// 开启复制

document.oncopy = function(){ return true; };

// 开启剪切

document.oncut = function(){ return true; };

// 开启粘贴

document.onpaste = function(){ return true; };

// 开启F12键

document.onkeydown = function

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-07-13 11:02:03       67 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-07-13 11:02:03       72 阅读
  3. 在Django里面运行非项目文件

    2024-07-13 11:02:03       58 阅读
  4. Python语言-面向对象

    2024-07-13 11:02:03       69 阅读

热门阅读

  1. SQL注入:基于错误

    2024-07-13 11:02:03       20 阅读
  2. Python高级(四)_内存管理

    2024-07-13 11:02:03       26 阅读
  3. 菜单(Menu)

    2024-07-13 11:02:03       20 阅读
  4. QAbstractButton

    2024-07-13 11:02:03       20 阅读
  5. Fastadmin之 按钮触发弹窗

    2024-07-13 11:02:03       25 阅读
  6. 我会什么开发技能

    2024-07-13 11:02:03       30 阅读
  7. iptables配置网络地址转换(nat)

    2024-07-13 11:02:03       28 阅读
  8. 【STM32 ARM】区分MCU,MPU与AP

    2024-07-13 11:02:03       21 阅读