gpt4 book ai didi

html - 显示隐藏的 div

转载 作者:行者123 更新时间:2023-11-28 00:20:47 32 4
gpt4 key购买 nike

您好,我正在尝试在用户单击更多 img 链接时显示我的 div para2 中的内容

我以前用过这个代码并且它有效但我现在不会了??

初学者请指出错误

提前致谢

<blockquote>
<p>
<a href="#para2"/>
<a href="#" onclick="return toggleMe('para2')" onfocus="#para2"/> <img src="images/more.gif" alt="" title="" border="0"></a>
<div id="para2" style="display:none">
text i want to reveal
</div>
</p>
</blockquote>

对不起

<script type="text/javascript">  
function toggleMe(a){
var e=document.getElementById(a);
if(!e)return true;
if(e.style.display=="none"){
e.style.display="block"
}
else{
e.style.display="none"
}
return true;
}
</script>
</head>

最佳答案

正如@Kolink 所说,onfocus 是错误的。尝试这样的事情......

http://jsfiddle.net/gL37n/5/

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

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