Get the length of jQquery Ajax Response

前端 未结 4 820
你的背包
你的背包 2021-01-17 17:19

I need to count the length of an Ajax response done in jQuery. The response is in JSON format and only contains a single string. I get the value but have no idea how to coun

4条回答
  •  春和景丽
    2021-01-17 18:07

    Do an if condition then convert it to string first, then count the length as needed.

    success: function(response) {
        if(response){       
          alert( (response + '').length );
        }
    }
    

提交回复
热议问题