gpt4 book ai didi

Jquery隐藏div和显示div

转载 作者:行者123 更新时间:2023-12-01 01:49:45 24 4
gpt4 key购买 nike

我想要几个隐藏,一个 ID 一个显示。

现在我有这个:

    $(document).ready(function () {
$('#showhidetarget').hide();

$('a#showhidetrigger').click(function () {
$('#about_me').toggle(1200);
});
});

因此,#about_me 部分隐藏在#showhidetrigger 上,但如果我再次单击,它也会显示。如果我想要另一个 id 来触发节目,我需要添加什么?

最佳答案

试试这个,

$(document).ready(function () {         

$('a#showhidetrigger').click(function () {
$('#about_me').hide(1200);
});

$('#idOfSomeother').click(function () {
$('#about_me').show(1200);
});

});

关于Jquery隐藏div和显示div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13428542/

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