使用子字符串函数我想获得图像编号。从字符串,
我正在将子字符串应用于下面的属性。这在 chrome 中最后返回 3,但在 mozilla 中它不能正常工作。
问题: 在上面的“-->”之后,我写了 chrome 值,在 mozilla 中第三步我得到 .jpg 而不是 3.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