我想split
文件名并在javascript中获取字符串的最后一个路径。
例如路径为D://Smita//GMAP//Images//images.jpg
,但根据我的要求,它应为Images/images.jpg
如何使用javascript实现此目的?
答案 0 :(得分:2)
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?