gpt4 book ai didi

javascript - Polymer 1.0 - 通过 id 选择动态元素的问题

转载 作者:行者123 更新时间:2023-11-28 00:11:23 25 4
gpt4 key购买 nike

我试图通过动态创建的 id 选择一个元素:

<dom-module id="filter-box">
<style>
:host {
display: block;
}
</style>
<template>
<h4 id="title">{{title}}</h4>

<paper-checkbox id="test">test</paper-checkbox><br>

<template is="dom-repeat" items="{{filters}}">
<paper-checkbox id="{{item}}">{{item}}</paper-checkbox><br>
</template>

</template>
</dom-module>
<script>
(function () {
Polymer({
is: 'filter-box',
properties: {
filters: {
type: Array,
notify: true,
},
title: {
type: String
}
},
ready: function() {
this.filters = [
'Commercial',
'Enterprise'
];
},
isSelected: function(filter) {
return this.$$[filter].checked;
}
});
})();
</script>

当调用 isSelected("something") 时,我得到:

"Uncaught TypeError: Cannot read property 'checked' of undefined"

我可以通过 this.$.title 选择标题,但是我无法以这种方式选择动态元素,也无法按照建议使用 this.$$ here .

最佳答案

根据您提供的引用,您应该像在函数调用中一样使用括号调用this.$$(selector)(而不是使用括号)。因此,将您的代码替换为:

return this.$$('#'+filter).checked;

请注意,您可能还需要在 id 选择器前面添加 #

关于javascript - Polymer 1.0 - 通过 id 选择动态元素的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30849781/

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