次のように、親 div 内のすべての div にマウスダウン ハンドラーを追加しました。
$productContainer.children(".button").on('mousedown', function(){
var index = $(this).index();
console.log("Clicked button at " + index);
// this doesnt work
$(this).removeAttr('mousedown');
});
ボタンがクリックされた後、その特定の div に対して mousedown ハンドラを削除したいと思います。それ、どうやったら出来るの?を削除してattr mousedown
もうまくいかないようです。