我有以下声明
if(play == '4'){
$(this).removeAttr('data-playa');
$(this).attr("data-pausea",'5');
}
基本上它替换data-playa="4"
了data-pausea="5"
当前元素。$(this)
使用 article-play so 类的当前锚标签的裁判$(article-play)
。我需要以某种方式编辑此代码以将以下代码应用于$(article-play)
页面上的所有元素,除了当前元素:
$(article-play).removeAttr('data-pausea');
$(article-play).attr("data-playa",'4');
所以它在逻辑上是这样的
if(play == '4'){
// Apply this to current .article-play
$(this).removeAttr('data-playa');
$(this).attr("data-pausea",'5');
// Apply this to all other .article-play on a page
$(article-play).removeAttr('data-pausea');
$(article-play).attr("data-playa",'4');
}