我正在尝试编写一段代码,当单击按钮时,它会检查图像列表,检查它是否具有“视频”的 id,如果有,则显示覆盖并删除那里的播放器。
我不断收到此错误:
Uncaught TypeError: Cannot call method 'indexOf' of undefined
这是代码:
$("#actions .btn").click(function(){
$('.span img').each(function(){
if($(this).attr('id').indexOf('video') != -1){
var spanid = $(this).attr('id').replace(/video/, '');
$(this).removeClass('hideicon');
$('#mediaplayer' + spanid + '_wrapper').remove();
}
});
});