我需要使用Jquery在具有相同Id的项目上调用函数 我试过这个:
$(document).ready(function() {
$('#example').each(function(){
this.dataTable();
});
} );
答案 0 :(得分:2)
答案 1 :(得分:2)
首先,ID应该是唯一的。所以,使用class而不是id。
接下来你应该绑定jquery来使用方法:
$(this).dataTable(); // instead of this, use $(this)
$(document).ready(function(){
$('.example').each(function(){
$(this).dataTable();
});
});
答案 2 :(得分:0)
Id
s不能相同,必须为unique
您应该使用class
代替id
所以
如果您为所有必需元素提供class="example"
,则可以使用
$(document).ready(function(){
$('.example').each(function(){
$(this).dataTable();
});
});