DOMContentLoaded永远不会触发,不能使用WebComponentsReady

时间:2015-12-23 03:38:43

标签: polymer polymer-1.0

使用聚合物1.2.3,

在firefox中,使用了polyfill(webcomponents-lite.js):

WebComponentsReady很快就会触发,因为querySelect中尚不存在getElementByIdinitialize个元素。

window.addEventListener('WebComponentsReady', function() {
  initialize
    .then(attatchListeners)

所以我使用的是DOMContentLoaded,但它永远不会触发:

   document.addEventListener('DOMContentLoaded', function() {
     initialize
      .then(attatchListeners)

当元素可用于querySelect()时,有关如何进行初始化的任何想法?

更新我让DOMContentLoaded的听众听得太晚。\

0 个答案:

没有答案