对不起,我是新手!!!我是 jQuery 新手,我对 jQuery $(this) 有疑问
我在 jsfiddle 中创建了一个非常简单的 jquery 函数,它可以工作,但不能在网站上工作
我在 jsfiddle 和我的代码中也使用了 jquery 1.10.1!
你可以在这里看到代码:
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<script type="text/javascript">
$(".resumeActu").on('click', function(){
var id = $(this).data('id');
alert("id is = "+id);
});
</script>
</head>
<body>
<div class="resumeActu" data-id="3">click me</div>
</body>
</html>
这也是我在 jsfiddle 中的代码:demo
我不明白为什么我的代码可以在 jsfiddle 上运行,但在我的页面中却不行