gpt4 book ai didi

javascript - Jquery 通过数据链接选择

转载 作者:行者123 更新时间:2023-11-29 18:26:44 25 4
gpt4 key购买 nike

我有 10 张带有数据链接属性的图片,想获取当前页面路径并选择匹配的一张

 var pathname = window.location.pathname;
current = $(".slide img").data('link', pathname);
console.log(current);

这是我目前所拥有的,但没有返回任何结果。

最佳答案

var pathname = window.location.pathname;
current = $(".slide img[data-link='"+ pathname +"']"); // get the image with pathname
console.log(current);

关于javascript - Jquery 通过数据链接选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12390309/

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