当我学习jquery时,遇到了如下问题:
<form id="form1" action="get1.php">
<p>评论:</p>
<p>姓名:<input type="text" name="username" id="username"/></p>
<p>内容:<textarea name="content" id="content" rows="2" cols="20"></textarea>
</p>
<p><input type="button" id="send" value="提交"/></p>
</form>
<div class="comment">已有评论</div>
<div id="resText"></div>
<script>
$(function () {
$("#send").click(function () {
$.get("get1.php",{
username:$("#username").val(),
content:$("#content").val()
},function(data,textStatus){
$("#resText").html(data);
})
})
})
</script>
我想知道为什么当我单击该按钮时,它什么都没显示。非常感谢。
答案 0 :(得分:0)
您应该使用发布功能将数据发送到服务器,获取请求应仅用于获取一些数据。还要确保页面中包含jQuery库。
$("#send").click(function () {
$.post("get1.php",{
username:$("#username").val(),
content:$("#content").val()
},function(data,textStatus){
$("#resText").html(data);
})
})