gpt4 book ai didi

javascript - document.getElementById ('' ).style.display ='block' ;不在 Wordpress 中工作

转载 作者:行者123 更新时间:2023-11-28 03:50:15 27 4
gpt4 key购买 nike

我有一个功能可以在点击时切换内容。

jQuery("#about_temp").click(function($){
document.getElementById('con_temp').style.display='block';
document.getElementById('keyc_temp').style.display='none';
document.getElementById('benec_temp').style.display='none';
});

这段代码有语法错误吗?它不会隐藏“con_temp”内容。但如果我在普通 HTML 中运行相同的内容(我的意思是不在 Wordpress 中),它工作正常。

最佳答案

你可以使用下面的脚本

jQuery("#about_temp").click(function($){
jQuery('#con_temp').show();
jQuery('#keyc_temp, #benec_temp').hide();
});

关于javascript - document.getElementById ('' ).style.display ='block' ;不在 Wordpress 中工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41391400/

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