gpt4 book ai didi

javascript - 使用 jQuery 从 'href' 元素的 'a' 属性中剪切文件名的最佳方法是什么?

转载 作者:行者123 更新时间:2023-11-28 11:19:52 25 4
gpt4 key购买 nike

例如,我有简单的代码:

<ul class="list">
<li><a href="http://www.aaa.com/bbb/ccc/file01.pdf">Download file 01</a></li>
<li><a href="http://www.bbb.com/ccc/ddd/file02.pdf">Download file 02</a></li>
</ul>

并且我希望仅在变量中存储文件名:file01.pdf 和 file02.pdf,如何剪切它们?

非常感谢您的帮助。

干杯。

最佳答案

使用

lastIndexofsubstring

给 anchor 标记一个id

var elem = document.getElementById ( "anch1" );

elem.href.substring (elem.href.lastIndexOf ( '/' ) + 1 );

使用 jQuery

$(function() {
$("ul.list li a").each ( function() {
alert ( $(this).attr ( "href" ).substring ($(this).attr ( "href" ).lastIndexOf ( '/' ) + 1 ) )
});
});

关于javascript - 使用 jQuery 从 'href' 元素的 'a' 属性中剪切文件名的最佳方法是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1788908/

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