2013-09-30 107 views
0

此代碼提交表單和它的作品,除了改變佔位符文本區域id=message如何更改textarea的佔位符?

$('#submit').click(function(){ 
    $.post("mail.php", $("#contact").serialize(), function(response) { 
    $('#message').attr('placeholder', response); 
    $('#success').html(response); 
    }); 
}); 

有螢火蟲沒有錯誤。

+1

是在清除textarea的價值?佔位符文本不會顯示元素是否有值或輸入的文本。 –

+0

@ vyx.ca,如何清除textarea,請參見圖書館 – bonaca

回答

2

使用.prop()代替.attr()

$('#message').prop('placeholder', response); 

.prop() vs .attr()

+0

,它似乎不起作用。我嘗試了'$('#message').text('');'清除textarea - 沒有結果。 – bonaca

+0

@SunSky警告'response'你得到了什麼? –

+2

沒關係,解決了,非常感謝。 – bonaca