我想将此发送到在image的onload事件上使用setInterval调用的函数,但它会抛出以下错误:
未捕获的TypeError:无法读取未定义(...)
的属性'attr'
<img src="image.jpg" id="24" onload="var sel =this;setInterval(function(sel){calllogin(sel)},20000);"
<script>
function calllogin(sel){
var id = sel.attr("id");
console.log('calling calllogin function',id);
}
</script>
请告诉我如何通过这个。 提前致谢
答案 0 :(得分:1)
您必须从函数参数中删除setInterval(function(sel)
,sel
。
onload="var sel =this; setInterval(function(){ calllogin(sel) },20000);"
或者只是将sel
作为第三个参数传递给setInterval
setInterval(function(sel){calllogin(sel)},20000, sel);
并且callBack中的sel
将不是jquery对象。它将是一个简单的元素对象。你必须在使用Jquery函数之前转换它。
function calllogin(sel) {
var id = $(sel).attr("id");
console.log('calling calllogin function',id);
}