0
var currentImageBox;
$('.newImage').bind('click', function() {
currentImageBox = this;
currentImageBox.unbind('click');
});
我試圖將currentImageBox設置爲被單擊的div(頁面上的多個div具有newImage類)。但無濟於事,我哪裏錯了?獲取jquery中的點擊源?
@ user1013512檢查演示,它的工作原理。該代碼從元素中解除綁定,就像代碼一樣。 – Joseph
This is better,currentImageBox = $(this);不過謝謝。 – panthro