我的页面上有几篇文章,一次只有一篇文章class="playing"
。这会根据用户交互而变化。因此,我需要以某种方式检查用户点击或做类似的事情,我需要找到class =“playing”的文章,并在全局变量中获取它的id。
我尝试了这个,但它似乎无法正常工作
$(document).on("click", function() {
nowPlaying = $('article').hasClass('playing');
nowPlaying = nowPlaying.atrr('id');
});
每次点击我都会在控制台中收到此错误:
TypeError: 'undefined' is not a function (evaluating 'nowPlaying.atrr('id')')
答案 0 :(得分:2)