.charAt()在ajax调用中不起作用

时间:2014-04-20 08:01:50

标签: javascript jquery ajax

我试图在ajax调用中使用.charAt() .charAt在$ .each函数之外进入autoComplete,但在其中,该函数不会出现!!

 function success2(res) {
                var somevar;
                firstchar=somevar.charAt(0); //here its working
      $.each(res, function (i, data) {

               firstLetter= data.strContent.charAt(0); // not working here

1 个答案:

答案 0 :(得分:0)

问题在于

data.strContent

使用String()

后,它有效
String(data.strContent).charAt(0)

工作