0
// Clearing Textarea
$('textarea').focus(function() {
var $this = $(this);
$.data(this, 'img', $this.css('background-image'));
$this.css('background-image', 'none');
});
$('textarea').blur(function() {
if($.trim($('textarea').val()).length){
$this.css('background-image', 'none');
} else {
$(this).css('background-image', $.data(this, 'img'));
}
});
當我點擊textarea時,儘管裏面有內容,但我仍然可以看到背景圖片。模糊清除Textarea(jQuery)
感謝您的幫助!
你會如果你使用Firefox的擴展Firebug已經很容易找到這個錯誤:)我強烈推薦它爲JavaScript編程 – Znarkus 2010-06-21 16:20:11