$( function () { |
$( "#send" ).click( function () { |
$.post( "post3.php" , { |
username : $( "#username" ).val(), |
content : $( "#content" ).val() |
}, function (data, textStatus) { |
var username = data.username; |
var content = data.content; |
var txtHtml = "<div class='comment'><h6>" + username + ":</h6><p class='para'>" + content + "</p></div>" ; |
$( "#resText" ).html(txtHtml); // 把返回的数据添加到页面上 |
}, "json" ); |
}) |
}) |