为什么我的edge浏览器控制台没有前端console.log的内容,但是用谷歌浏览器可以打印出来结果
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
<script>
console.log("123456");
</script>
</body>
</html>
这是谷歌浏览器的

这是edge浏览器的

会不会是edgd浏览器设置的问题

