可以使用window对象的location对象的里的href来获取当前页面的URL地址。
工具原料:编辑器、浏览器
1、Location 对象包含有关当前 URL 的信息,Location 对象是 Window 对象的一个部分,可通过 window.location 属性来访问,代码示例如下:
<html><head><script type="text/javascript">
<script>
alert(window.location.href)
</script>
</script>
</head>
<body>
test
</body>
</html>
2、运行的结果如下图:
//先得到图片var
img=document.getElementById("图片的id")
//得到图片路径
var
path=img.src
//从路径中截取图片名[包括后缀名]
var
filename
if(path.indexOf("/")>0)//如果包含有"/"号
从最后一个"/"号+1的位置开始截取字符串
{
filename=path.substring(path.lastIndexOf("/")+1,path.length)
}
else
{
filename=path
}