我正在尝试在我的自定义元素中添加属性并在我的新元素中使用它,但是很难使用语法。我看过这篇文章,但不太清楚它的用法。如何在创建的回调中声明和使用自定义“标签”属性来呈现它?
<current-date foo="Today is: "></current-date>
<script>
document.registerElement('current-date', {
prototype: {
createdCallback: function() {
this.innerHTML = this.foo + new Date();
},
foo: {
value: function() {
alert('foo() called');
}
}
}
});
</script>
http://jsbin.com/UdOwizU/4/(仅适用于 Google Canary)