2014-09-05 45 views

回答

2

ID應該是唯一的。改爲使用類和類選擇器。

$('.example').each(function(){ 
    $(this).dataTable(); 
}); 

Demo

2

首先,ID應該是唯一的。所以,使用類而不是id。

接下來的事情你應該綁定jQuery的使用方法:

$(this).dataTable(); // instead of this, use $(this) 

$(document).ready(function(){ 
    $('.example').each(function(){ 
     $(this).dataTable(); 
    }); 
}); 
0

Id s不能是相同的,所以一定要unique

你應該使用class代替id

so

如果你給class="example"爲所有必需的元素,那麼你可以使用

$(document).ready(function(){ 
    $('.example').each(function(){ 
     $(this).dataTable(); 
    }); 
}); 
相關問題