JQuery:如何更改鼠标悬停事件上的图形?
使用 JQuery,当我将鼠标悬停在 HTML 表/div 中的一行上时,如何更改地图图标?
这是一个示例:
http: //www.sfsunriseidx.com/homes/94131/?uuid=9ed7269b-5327-4c88-ba15-f700ed343d69&source=REDIR
请注意,当您将鼠标悬停在左侧的家庭列表上时,相应的地图图标会出现正确的改变。
问题:如何使用 JQuery 模拟此功能?
更新:下面建议用 ID 链接这两个元素。如果是这样的话,你还如何完成这件事呢?
Using JQuery, how do I change a map icon whenever I mouse hover over a row in an HTML table/div?
Here is an example:
http://www.sfsunriseidx.com/homes/94131/?uuid=9ed7269b-5327-4c88-ba15-f700ed343d69&source=REDIR
Notice when you mouse hover over a home listing on the left, the corresponding map icon on the right changes.
Question: how do I emulate this functionality using JQuery?
Update: It was suggested below that an ID linked the two elements. If that is the case, how would you still accomplish this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 html 中使用
for=""
属性,如在图像上:
jQuery,使用悬停函数对相应的ID进行动画处理,与for中的相同:
Use the
for=""
attribute in html, likeOn the image:
jQuery, using the hover function to animate the corresponding ID, the same one in the for:
可能这两个元素都通过 ID 链接。
Probably both elements are linked by a ID..
像这样的事情:
只需确保更改“#googleMaps”和“#mapLinks”即可:)
Something like this:
Just make sure you change the "#googleMaps" and "#mapLinks" thing :)