假设我有一些html dom元素,比如
<slot></slot>
<slot name='slotWithName'></slot>
如何通过querySelector()方法找到第一个dom?
我试过document.querySelector("slot :not([name])")
不行:(
答案 0 :(得分:0)
Array.prototype.slice.call(document.querySelectorAll('slot'))
.filter(function(el){ return !el.name })
答案 1 :(得分:0)
尝试一下:
querySelector('slot:not([name])')