我试图在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
答案 0 :(得分:0)
问题在于
data.strContent
使用String()
String(data.strContent).charAt(0)
工作