gpt4 book ai didi

javascript - 如何使用 javascript 或 jquery 检查 href 路径是否包含图像或其他链接?

转载 作者:行者123 更新时间:2023-11-28 04:36:47 26 4
gpt4 key购买 nike

任何人都知道告诉我这样做的建议。我如何检查 anchor href 属性是否包含图像路径或其他路径。

例如:

    <a href="image.jpg"><img src="image.jpg"/></a>
<a href="http://google.com"><img src="image.jpg"/></a>

请参阅上面的示例,显示 href 属性包含不同的路径,例如第一个是图像,第二个是其他站点链接。我仍然对如何使用 jquery 或 javascript 检查 href 路径是否包含图像路径或其他路径感到困惑。

任何建议都会很棒。

最佳答案

例如(如果需要,您可能需要包含其他图片格式):

$("a").each(function(i, el) {
var href_value = el.href;
if (/\.(jpg|png|gif)$/.test(href_value)) {
console.log(href_value + " is a pic");
} else {
console.log(href_value + " is not a pic");
}
});

关于javascript - 如何使用 javascript 或 jquery 检查 href 路径是否包含图像或其他链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17563852/

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