我在 js 插件中发现了以下锥体
var container = document.getElementById( 'vs-container' ),
wrapper = container.querySelector( 'div.vs-wrapper' ),
sections = Array.prototype.slice.call( wrapper.querySelectorAll( 'section' ) ),
links = Array.prototype.slice.call( container.querySelectorAll( 'header.vs-header > ul.vs-nav > li' ) );
我无法理解上面代码中的作用Array.prototype.slice.call()
和作用。wrapper.querySelectorAll( 'section' )
我以前没有见过他们,所以我想知道他们实际上做了什么。