
$(function () {
$("#send").click(function () {
$.get("get1.php", {
username : $("#username").val(),
content : $("#content").val()
}, function (data, textStatus) {
$("#resText").html(data); // 把返回的数据添加到页面上
});
})
})



