此代码提交一个表单并且它可以工作,除了更改 textarea 的占位符id=message
$('#submit').click(function(){
$.post("mail.php", $("#contact").serialize(), function(response) {
$('#message').attr('placeholder', response);
$('#success').html(response);
});
});
Firebug 中没有错误。