我想将一个字符串转换为 2 个变量..
我已经创建了一个变量,我正在使用子字符串来拆分它,但是我似乎无法让它工作。
如果我创建一条警报消息,它会显示我想要拆分的原始变量(所以我知道那里有东西)
我的代码如下所示:
// variable 'ca' is set from a XML Element Response
alert(ca); // displays a string (eg. 123456789) - which does display fine
alert(ca.substring(0,1)); // should alert 1 but it stops and nothing is displayed
但我添加ca = "123456789"; 如下所示,它有效..
ca = "123456789";
alert(ca); // displays a string (eg. 123456789) - which does display fine
alert(ca.substring(0,1)); // should alert 1 but it stops and nothing is displayed
但是变量 ca 设置了一些东西,并且在使用子字符串之前显示..
有谁知道我可能做错了什么?