gpt4 book ai didi

Javascript 循环在 meteor 中不起作用

转载 作者:行者123 更新时间:2023-11-30 11:33:59 25 4
gpt4 key购买 nike

这应该有效,但实际上无效。我究竟做错了什么?我想将“已选择”输出到 meteor 页面上的标签

Template.editor.onRendered( function() {
var cats = ["Comedy","Action","Self Help"];
var arrayLength = cats.length;
for (var i = 0; i < arrayLength; i++) {
if(cats[i].indexOf(getDocument.category) != -1){
//found
var id = cats[i].trim().toLowerCase();
$("body").find("#"+id).attr("selected=selected");
console.log(id);
} else {
console.log(getDocument.category)
}
}
}

还有

getDocument.category = ["Action", "Comedy"]

最佳答案

也许改变

$("body").find("#"+id).attr("selected=selected");

$("body").find("#"+id).attr("selected","selected");

编辑:

if(cats[i].indexOf(getDocument.category) != -1){

我觉得你走错方向了试试这个:

if(getDocument.category.indexOf(cats[i]) != -1){

关于Javascript 循环在 meteor 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45194299/

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