Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
选择第三个选项卡(Guia de Tallas)时,我需要隐藏本网站上的“相关”DIV,并在切换其他选项卡时再次显示。这可能吗?
这是网站:http ://tinyurl.com/d6jk4gf
您可以使用 javascript.js 文件中的代码将其隐藏。将此添加到$('div.htmltabs ul li a').click函数的末尾:
$('div.htmltabs ul li a').click
if (thisClass == "tab3") $(".related").hide(); else $(".related").show();