单击图像或悬停时文本会发生变化

发布于 2025-01-16 20:58:55 字数 487 浏览 0 评论 0原文

我想编辑我的网站,如果我单击图像 01,则会显示文本 1;如果我单击图像 2,则会显示另一个文本。我希望通过单击图像来更改文本,以使可用性更加流畅,有人有想法吗?我使用 WordPress 和 elementor pro。谢谢你,

我尝试使用代码:

var $ = jQuery $(document).ready(function(){
     $('[data-showme]').on('click', function(){
         var showme = $(this).attr('data-showme')
         $('.all-images').hide()
         $('#' + showme).show()
     }) 
}) 

Preview

I want to edit my Website and if i click on the image 01 shown text 1 and if i click on image 2 another text displayed. i want that the text is change by clicking on the images to make the useability more smooth anyone an idea ? i use wordpress and elementor pro. thank yu

i try to use the code :

var $ = jQuery $(document).ready(function(){
     $('[data-showme]').on('click', function(){
         var showme = $(this).attr('data-showme')
         $('.all-images').hide()
         $('#' + showme).show()
     }) 
}) 

Preview

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心如狂蝶 2025-01-23 20:58:55

如果您使用 JavaScript,那么这是一个简单的方法,只需将 onClick() 事件放在图像上 - (onClick 是一个通过单击所需按钮来使任何事情发生的事件或图像或任何东西)。

如果您想显示一些与图像相关的文本,那么只需使用 OnClick() 中的文本内容,然后只有它会被执行。
这将是一个简单的方法

If you are using JavaScript then it is an easy way just put the onClick() event on the image - (onClick is an event that makes anything happen by clicking that desired button or image or anything).

If You want to Show some text with respect to the image then just use the text content inside of OnClick() then only it will be executed.
It will be an easy way????

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文