ie11的聚合物含量问题

时间:2017-09-25 13:21:39

标签: javascript polymer internet-explorer-11 polymer-1.0

我正在使用聚合物1。 我在聚合物中使用了这样的东西,我从我使用这个组件的地方传递了该部分的内容。 它适用于chrome和firefox。 但是对于IE-11,我没有得到任何内容。

<section id="asdf" class="className">
    <content select="section"></content>
</section>

有人知道这个问题吗?

1 个答案:

答案 0 :(得分:1)

尝试将select属性值设置为包含句点。 select属性需要选择器而不是字符串。

<template>
  <header>Local dom header followed by distributed dom.</header>
  <content select=".content"></content>
  <footer>Footer after distributed dom.</footer>
</template>

Polymer docs