文字列を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には何かが設定されており、部分文字列が使用される直前に表示されます。
誰かが私が間違っているかもしれないことを知っていますか?