我想要一种方法来只选择DOM中可见元素,这些元素位于一个评估为true的模板中。
<template is="dom-if" if="[[true]]">
<span>I should be selectable</span>
</template>
<template is="dom-if" if="[[false]]">
<span>I should not be selectable</span>
</template>
我目前正在使用它:
Polymer.dom(this.root).querySelectorAll("span");
还返回<dom-if>
模板中评估为false的节点。
有没有使用restamp
来执行此操作?