gpt4 book ai didi

javascript - 在页面上隐藏/显示多次

转载 作者:太空宇宙 更新时间:2023-11-04 14:03:00 25 4
gpt4 key购买 nike

首先,我知道这个问题已经在这个网站上回答了很多次,这是这里的主要问题。我在答案中被宠坏了,并且已经搜索了几个小时,没有找到任何直接相似的东西。一定有很多方法可以做到这一点,但我现在拥有的最接近我想要的。

目前我的代码有这个,出于某种原因 fiddle 无法工作,虽然它在我的代码中工作正常,但一定是遗漏了什么。

http://jsfiddle.net/PVLMX/

HTML:

<div id="wrap">
<p>This text is visible, but there is more.<a href="#" id="example-show" class="showLink" onclick="showHide('example');return false;"><br/><br/>See more >></a>
</p>
<div id="example" class="more">
<p>Congratulations! You've found the magic hidden text! Clicking the link below
will hide this content again.</p>
<p><a href="#" id="example-hide" class="hideLink"
onclick="showHide('example');return false;">Hide this content >></a></p>
</div>
</div>

Javascript:

function showHide(shID) {
if (document.getElementById(shID)) {
if (document.getElementById(shID+'-show').style.display != 'none') {
document.getElementById(shID+'-show').style.display = 'none';
document.getElementById(shID).style.display = 'block';
}
else {
document.getElementById(shID+'-show').style.display = 'inline';
document.getElementById(shID).style.display = 'none';
}
}
}

我需要能够为页面上的每个新“阅读更多”调用该函数。目前,第一个“查看更多”始终是 javascript 的目标,我不确定如何为页面上的其他链接调用此函数。

最佳答案

在 HTML 中,每个 id=""必须是一个唯一标识符,你不能放两个 id="example"所以你需要 id="example"和 id="example2"等等。

工作 jsfiddle:http://jsfiddle.net/PVLMX/2/

<div id="wrap">
<p>This text is visible, but there is more.<a href="#" id="example2-show"
class="showLink" onclick="showHide('example2');return false;"><br/><br/>See more >></a>
</p>
<div id="example2" class="more">
<p>This text was hidden, now you see it</p>
<p><a href="#" id="example2-hide" class="hideLink"
onclick="showHide('example2');return false;">Hide this content >></a></p>
</div>
</div>

我改变了什么:

  1. 第二个 div 中的每个 id="example.. 到 id="example2...。
  2. 以“No wrap - in head”模式加载脚本(jsfiddle 左侧选项)

关于javascript - 在页面上隐藏/显示多次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22495702/

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