jquery中$.get()方法输出到页面上的问题
1个回答
展开全部
补充: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>jquery</title> <script type="text/javascript" src="./scripts/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#send").click(function() { $.get("get1.php", { username : $("#username").val(), content : $("#content").val() }, function(data, textStatus) { $("#resText").html(data); }); }) }); </script> <style type="text/css"> </style> </head> <body> <form id="form1" action="#"> <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> </body> </html> 有错误提示
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>jquery</title>
<script type="text/javascript" src="./scripts/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#send").click(function() {
$.get("get1.php", {
username : $("#username").val(),
content : $("#content").val()
}, function(data, textStatus) {
$("#resText").html(data);});})});</script><style type="text/css"></style>
</head><body>
<form id="form1" action="#">
<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></body></html>有错误提示
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询