Web组件的封装和事件绑定到shadow DOM元素

时间:2014-04-18 20:06:53

标签: html5 web-component shadow-dom

在开始使用Polymer之前,我开始详细了解Web组件。

我正在研究一个使用两个<button>和一个<input type="text">元素创建旋转按钮的简单示例。

模板是:

<template id="tplSpinButton">
  <style type="text/css">
    .spin-button > * {
      display: inline;
      text-align: center;
      margin: 0;
      float: left;
    }
  </style>
  <div class="spin-button">
    <content select=".up-spin-button"></content>
    <content select=".display-spin-button"></content>
    <content select=".down-spin-button"></content>
  </div>
</template>

主机元素如下:

<article>
  <spin-button>
    <button class="up-spin-button">&#43;</button>
    <input class="display-spin-button" type="text" value="0" size="2"/>
    <button class="down-spin-button">&#45;</button>
  </spin-button>
</article>

和JS代码

var template = document.querySelector('#tplSpinButton');
var host = document.querySelector('article spin-button');
var articleShadowRoot = host.createShadowRoot();
articleShadowRoot.appendChild(document.importNode(template.content,true));

var counterBox = document.querySelector('.display-spin-button');
var upHandler = document.querySelector('.up-spin-button');
var downHandler = document.querySelector('.down-spin-button');
upHandler.addEventListener('click', function(e){
    var count = parseInt(counterBox.value);
    counterBox.value = count + 1;
}, false);

downHandler.addEventListener('click', function(e){
    var count = parseInt(counterBox.value);
    counterBox.value = count - 1;
}, false);

document.registerElement('spin-button', {
    prototype: Object.create(HTMLElement.prototype)
});

在实验过程中,我发现JS /代码不能像<style>那样在影子DOM中成为<template>的一部分 在上面的示例中,我将添加插入点(<content>),然后将事件侦听器附加到分布式元素。

  • 有没有办法封装事件监听器实现?
  • 有没有办法将控件和元素移动到阴影dom,然后以任何方式附加事件监听器?

1 个答案:

答案 0 :(得分:3)

  

有没有办法封装事件监听器实现?

您可以将其作为元素原型的一部分,并在lifecycle callback内构建。

  

有没有办法将控件和元素移动到阴影dom,然后以任何方式附加事件监听器?

使用getDistributedNodes选择投放到内容代码中的元素。

这里的a jsbin说明了这两个概念。希望有所帮助!