求大神看看 為什么不行
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
? ? <head>
? ? ? ? <title>使用post()方法以POST方式從服務器發送和獲取數據</title>
? ? ? ? <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js" type="text/javascript"></script>
? ? ? ? <link href="style.css" rel="stylesheet" type="text/css" />
? ? </head>
? ??
? ? <body>
? ? ? ? <div id="divtest">
? ? ? ? ? ? <div class="title">
? ? ? ? ? ? ? ? <span class="fl">檢測數字是否大于0</span>?
? ? ? ? ? ? ? ? <span class="fr"><input id="btnCheck" type="button" value="檢測" /></span>
? ? ? ? ? ? </div>
? ? ? ? ? ? <ul>
? ? ? ? ? ? ? ?<li>請求輸入一個數字 <input id="txtNumber" type="text" size="12" /></li>
? ? ? ? ? ? </ul>
? ? ? ? </div>
? ? ? ??
? ? ? ? <script type="text/javascript">
? ? ? ? ? ? $(function(){
? ? ? ? ? ? ? ? $("#btnCheck").bind("click",function(){
? ? ? ? ? ? ? ? ? ? $.post("http://www.xianlaiwan.cn/data/check_f.php",{
? ? ? ? ? ? ? ? ? ? ? ? num:$("#txtNumber").val();
? ? ? ? ? ? ? ? ? ? },
? ? ? ? ? ? ? ? ? ? function(data){
? ? ? ? ? ? ? ? ? ? ? ? $("ul").append("<li>你輸入的<b>"+$("#txtNumber").val()+"</b>是<b>"+data+"</b></li>")
? ? ? ? ? ? ? ? ? ? });
? ? ? ? ? ? ? ? }) ? ?
? ? ? ? ? ? })
? ? ? ? </script>
? ? </body>
</html>
2016-05-29
?num:$("#txtNumber").val(); ?是不是這里多了封號
2016-06-22
num: $("") ? ? ?冒號后面要有個空格 ?
我也犯了這個錯誤
2016-05-29
?num:$("#txtNumber").val();這行的分號去掉就可以了