在javascript中拆分文件名

时间:2013-05-18 06:54:47

标签: javascript

我想split文件名并在javascript中获取字符串的最后一个路径。

例如路径为D://Smita//GMAP//Images//images.jpg,但根据我的要求,它应为Images/images.jpg如何使用javascript实现此目的?

1 个答案:

答案 0 :(得分:2)

splitslicejoin

var path = 'D://Smita//GMAP//Images//images.jpg'.split('//').slice(-2).join('/');
//path is "Images/images.jpg"

对于Google地图信息窗口,您应该能够将其作为src元素的img投放:

content: '<img src="'+path+'">'

参见相关的How to add an image to InfoWindow of marker in google maps v3?