Windows 侧边栏点击事件不起作用
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我找到了解决问题的方法,即使我不知道为什么它不能与 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.