使用jQuery从'a'元素的'href'属性中删除文件名的最佳方法是使用正则表达式。以下是一个示例代码:
// 假设我们有一个a标签
<a href="https://example.com/path/to/file.html">Click here</a>
// 使用jQuery获取a标签的href属性
var href = $('a').attr('href');
// 使用正则表达式删除文件名
var hrefWithoutFilename = href.replace(/\/([^/]+)\.[^/]+$/, '/$1');
// 输出结果
console.log(hrefWithoutFilename); // 输出:https://example.com/path/to/
在这个示例中,我们首先使用jQuery获取a标签的href属性,然后使用正则表达式将文件名从href属性中删除。最后,我们将结果输出到控制台。
领取专属 10元无门槛券
手把手带您无忧上云