纯JS(没有jQuery)中这段代码的等价物是什么?
$.each(data, function(i, item) {
if(window.location.href.indexOf(data[i].url) > -1) {
slt = data[i].id;
if ($(slt).length) {
$(slt).html(data[i].html);
}
}
})
我试了example但没有成功。
var elements = document.querySelectorAll(data);
Array.prototype.forEach.call(elements, function(el, i){
alert(el);
});
你能帮我吗?
答案 0 :(得分:0)
forEach()是一个数组函数,它循环遍历数组元素并提供数据元素及其在回调中的索引。
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/forEach
call() - 调用a并用于执行函数。
假设数据是某个数组的问题的解决方案。
data.forEach(function(item,i){
if(window.location.href.indexOf(data[i].url) > -1){
slt = data[i].id;
if(slt.length)
{
document.getElementById(slt).innerHTML = data[i].html;
}
}
});