0
$('textarea').focus(function() {
var img = $(this).css('background-image');
$(this).css('background-image', 'none');
});
$('textarea').blur(function() {
$(this).css('background-image', img);
});
..似乎不工作。我認爲有些事情是錯誤的,但我無法弄清楚什麼。切換背景圖像(jQuery)
非常感謝您的幫助!
+1 - 我只是做'$ .data(this,'img')''雖然,不需要在這裏創建一個浪費的對象。 – 2010-06-21 13:26:16
@Nick:我不知道'$ .data()'也適用於DOM對象。太好了! – jAndy 2010-06-21 13:29:27
恩......你能舉個例子嗎,我不能讓它工作。謝謝! – 3zzy 2010-06-21 13:31:35