单击图像或悬停时文本会发生变化
我想编辑我的网站,如果我单击图像 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()
})
})
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()
})
})
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 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????