我正在尝试在 jquery 中增加一个属性 onclick,一次增加 1 个。
假设我有这个按钮,它是.new-rcc
页面上唯一的:
<a class="new-rcc" data-attr="1" href="#"><span>Button »</span></a>
每次单击按钮时,我都需要增加data-attr
1,所以它只会从 1 增加到 2 到 3 到 4,等等。
我试着做这样的事情:
var showthese = $('.new-rcc').prop('data-attr');
$('.new-rcc').click(function(){
var showtotal = showthese++;
$(this).prop('data-attr', showtotal);
return false;
});
但它似乎不想工作?