gpt4 book ai didi

javascript - 如何从 URL 中获取文件名和扩展名?

转载 作者:行者123 更新时间:2023-11-29 22:21:54 32 4
gpt4 key购买 nike

我正在使用原型(prototype)并尝试从 src 中的 URL 中获取文件名和扩展名<img> 的属性.例如,我想得到 colorch091001-black-2.jpg出于这个:

<img id="small_img_src" src="http://127.0.0.1/magento162/media/catalog/product/cache/1/image/265x265/9df78eab33525d08d6e5fb8d27136e95/c/o/colorch091001-black-2.jpg">

我可以得到 src值(value):

var img = $('small_img_src').src;

但是我怎样才能得到文件名和扩展名呢?

最佳答案

试试这个,对于纯 JavaScript 解决方案

<img id="small_img_src" 
title="Royal Dress" alt=""
src="http://127.0.0.1/magento162/media/catalog/product/cache/1/image/265x265/9df78eab33525d08d6e5fb8d27136e95/c/o/colorch091001-black-2.jpg"
style="display: block;" />

var src = document.getElementById('small_img_src').src;
alert(src.substring(src.lastIndexOf('/') + 1));

关于javascript - 如何从 URL 中获取文件名和扩展名?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12001575/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com