本文介绍了IE11在标准模式下不支持querySelectorAll方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在IE11上遇到问题. document.querySelectorAll 引起了一些问题.

I'm having an issue with IE11. The document.querySelectorAll is causing some issues.

每当我通过控制台使用它时,就像这样:

Whenever I use it via the console like so:

document.querySelectorAll('.test_class');

我收到以下错误:

Object doesn't support property or method 'querySelector'

我没有处于怪癖模式,因为我发现这对其他遇到此问题的人来说是个问题.我还已将<!DOCTYPE html> 添加到我的网页.

I'm not in quirks mode as I found that this was an issue for others that had this problem. I have also added the <!DOCTYPE html> to my Web page.

我想念什么?

推荐答案

以下是您的操作方法:

让类= document.querySelectorAll('.test_class')Array.prototype.forEach.call(classes,element => {console.log("class",element)})

这篇关于IE11在标准模式下不支持querySelectorAll方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-12 13:52