サブストリング関数を使用して、画像番号を取得したい。文字列から、
以下のプロパティに部分文字列を適用しています。これは、chrome では最後に 3 を返しますが、mozilla では正しく動作しません。
問題: 上記の " -->" この後、クロムの値を書きました。mozilla では、3 番目のステップで 3.jpg ではなく .jpg を取得します。
alert("obj.back is "+obj.style.backgroundImage);-->url(http://localhost/final.21/img/img3.jpg);
origImg = obj.style.backgroundImage.split(")")[0];
alert('origImg is'+origImg); -->>url(http://localhost/final.21/img/img3.jpg
alert('after length '+origImg.substring(origImg.length-5)); -->3.jpg
origImg = origImg.substring(origImg.length-5).split(".")[0];
alert('origImg is'+origImg); --> 3