Windows 侧边栏点击事件不起作用

发布于 2025-01-04 07:20:48 字数 840 浏览 0 评论 0原文

我在 Windows 侧边栏项目中使用了 jQuery 中的单击事件,该事件在侧边栏中不起作用(我不认为它已绑定),但它可以在浏览器(甚至 IE7)上工作。这是我的项目中的一个简单示例,它在我的侧边栏中不起作用,我希望有人能告诉我原因,因为我无法弄清楚。

<html>
    <head>

        <script type="text/javascript" src="jquery-1.7.1.js"></script>
        <script type="text/javascript">
            $(function(){
                $('#clickable_div').click(function(){
                    $('#textContent').append($('<h4 />').text('change'));
                });
            });
        </script>
    </head>
    <body style="width: 200px; height: 250px; border: 1px solid black;">
        <div id="clickable_div" style="width: 50px; height: 50px;border:1px solid black;">Click the div</div>
        <div id="textContent"></div>
    </body>
</html>

I use a click event in jQuery in my windows sidebar project that doesn't work in the sidebar (i don't think it's binded), but it works on a browser (even IE7). Here is a simple example from my project that doesn't work in my sidebar, and I hope somebody can tell me why, because I couldn't figure it out.

<html>
    <head>

        <script type="text/javascript" src="jquery-1.7.1.js"></script>
        <script type="text/javascript">
            $(function(){
                $('#clickable_div').click(function(){
                    $('#textContent').append($('<h4 />').text('change'));
                });
            });
        </script>
    </head>
    <body style="width: 200px; height: 250px; border: 1px solid black;">
        <div id="clickable_div" style="width: 50px; height: 50px;border:1px solid black;">Click the div</div>
        <div id="textContent"></div>
    </body>
</html>

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

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

发布评论

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

评论(1

浅忆流年 2025-01-11 07:20:48

我找到了解决问题的方法,即使我不知道为什么它不能与 jQuery 的 click 方法一起使用。

我使用了javascript的onclick,现在它可以工作了。

I found a solution for my problem, even if I don't know why it does not work with jQuery's click method.

I used javascript's onclick, and it's working now.

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