javascript - Un débutant pose des questions sur Ajax pour obtenir des données
仅有的幸福
仅有的幸福 2017-06-06 09:53:48
0
1
443

Téléchargez phpstudy pour créer un serveur local

data.json est le suivant

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

bonjour.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>

le réseau montre que data.json a été chargé

console.log(data) ne montre rien

仅有的幸福
仅有的幸福

répondre à tous(1)
迷茫

Essayez de changer le paramètre url en une adresse d'accès avec http

Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal