DOM选择在dom-if中可见的元素

时间:2016-12-10 14:26:30

标签: polymer-1.0

我想要一种方法来只选择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 来执行此操作?

0 个答案:

没有答案