我的代码正在向控制台输出一系列对象,例如:
- 对象[a.mod-articles-category-title 362-o-que-eo-bsc]
- 对象[a.mod-articles-category-title curso-bs...e-gestao]
- 对象[a.mod-articles-category-title curso-bs...processo]
代码如下所示:
var obj = <?php echo json_encode($paginas); ?>;
$('a.mod-articles-category-title').each(function () {
var links=$(this).attr('href');
if(links.indexOf('/')!=-1){
i=1;
}
else{
i=0;
}
var procura=links.match(/(\d+)/g)[i];
if(obj.indexOf(procura)!=-1){
console.log($(this));
$(this).addClass("visto");
};
});
其中 obj 是 PHP 函数返回的数组, procura 返回一个带有链接 ID 的数字。
如果 procura 中的数字在 obj 数组中,我想添加“visto”类,以赋予它不同的风格,但它不起作用......