显示隐藏的div

发布于 2024-12-29 10:48:28 字数 903 浏览 0 评论 0原文

嗨,当用户单击 more 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>

hi i am try to reveal the content in my div para2 when the user clicks the more img link

i have used this code before and it worked but i wont now ??

Please point out my mistakes i am only a beginner

thanks in advance

<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>

sorry

<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>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最终幸福 2025-01-05 10:48:28

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

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

As @Kolink said onfocus is wrong. Try something like this...

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

情话墙 2025-01-05 10:48:28

#para2 不是有效的 JavaScript 代码,因此您不能将其用作 onfocus 属性。

由于您在那里遇到语法错误,因此它也可能突破了 onclick 代码,因此无法运行它。

尝试删除 onfocus 属性,看看是否可以解决问题。

#para2 is not a valid piece of javascript code, so you can't use it as an onfocus attribute.

Since you're getting a syntax error there, it is possible that it's breaking out of the onclick code as well, therefore not running it.

Try removing the onfocus attribute, and see if that fixes it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文