gpt4 book ai didi

javascript - 显示带有书签的隐藏 div

转载 作者:行者123 更新时间:2023-11-30 10:55:23 25 4
gpt4 key购买 nike

基本上我隐藏了页面上的所有答案 div,但我想在用户单击指向它的书签链接时显示一个 div。

这是javascript代码

<script type="text/javascript">
$(document).ready(function(){
//hide the all of the element with class msg_body
$(".faq_answer").hide();
//toggle the componenet with class msg_body
$(".faq_question").click(function(){
$(this).next(".faq_answer").slideToggle("normal");
});
});
</script>

该部分的结果 HTML 是

<li>
<div class="faq_question">
<a href="#url-blah" name="url-blah">Question</a>
</div>
<div class="faq_answer">
<p>Text to show</p>
</div>
</li>

编辑

问题是我该怎么做...虽然在这里得到答案后还是想通了。

最佳答案

window.location.hash 将在您的 URL 中为您提供值“#”。您可以使用它来构建选择器。

// if visiting /index.php#item1
$(window.location.hash).show(); // $('#item1').show();

关于javascript - 显示带有书签的隐藏 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2052648/

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