gpt4 book ai didi

javascript - 检查悬停链接的 href 属性

转载 作者:行者123 更新时间:2023-11-28 16:14:02 26 4
gpt4 key购买 nike

我有一组带有特定类别背景图片的链接。

a(href="some-url" style="background-image: image-url").location-thumb

我正在使用 Jquery 悬停功能来检查悬停在哪个链接上,并因此想要更改相邻列中的背景。我特别需要检查链接的 href 属性。

我需要如下 if 循环格式的语法:

if(hovered link attribute = "www.google.com"){
//proceed further
}

最佳答案

非常感谢您的回复。最终实现了代码,其中打开和关闭悬停在带有链接的图像上,不同的谷歌地图被设置为一个 iframe 元素。

  $('a.location-thumb').hover(function(){  
if($(this).attr("href") == "/2013/01/20/30-shali-tibba.html"){
document.getElementById('iframe1').src = "https://www.google.com
/maps/embed1"
}
}, function(){
document.getElementById('iframe1').src = "https://www.google.com
/maps/embed2"
});

关于javascript - 检查悬停链接的 href 属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37845955/

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