Maison > Article > interface Web > Comment obtenir la longueur du champ JSON dans JS
Code JS pour obtenir la longueur du champ JSON Cet article partagera principalement avec vous sous forme de code
//JS 获得JSON 字典的长度的代码 var jsonData = {"name":"txt1","name2":"txt2"}; function getJsonLength(jsonData) { var jsonLength = 0; for (var item in jsonData) { jsonLength++; } return jsonLength; } console.log("json对象的长度为:",getJsonLength(jsonData));
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!