gpt4 book ai didi

javascript - 访问 Polymer 元素中 的内容

转载 作者:行者123 更新时间:2023-11-28 15:30:20 26 4
gpt4 key购买 nike

我需要从 <content> 中提取内容元素。我的自定义元素调用如下

<my-element>Important text</my-element>

所以问题是:如何将此文本放入我的 polymer 元素中?

我的 polymer 元素现在看起来像这样:

<polymer-element name="my-element">
<template>
<template if="{{show}}">
<content id="content"></content>
</template>
</template>
<script>
Polymer('my-element', {
ready: function () {
this.show = true;
//var text = this.$.content.getDistributedNodes(); // doesn't work
}
});
<script>
</polymer-element>

有什么建议我可以实现这一目标吗?

最佳答案

不要使用ready,它对你来说触发得太早,使用domReady。

关于javascript - 访问 Polymer 元素中 <content> 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27610589/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com