javascript - 新手求問ajax 取得數據
仅有的幸福
仅有的幸福 2017-06-06 09:53:48
0
1
448

下載phpstudy搭建本機伺服器

#data.json如下

{
    name:"lvyuanyaun",
    age:"25"
}

hello.html

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
</head>
<body>
     <button id="btn">点击</button>
    <h5 id="text">....</h5>
    <script src="jq.js"></script>
    <script type="text/javascript">
        $("#btn").click(function() {
        $.ajax({
        type: "GET",
        url: "data.json",
        dataType: "json",
        success:function(data) {
           console.log(data)
        }
      });

   })
    </script>
</body>
</html>

network顯示data.json已被載入

##console.log(data)什麼都沒顯示

仅有的幸福
仅有的幸福

全部回覆(1)
迷茫

把url那個參數改成有http的訪問位址試試

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板