Cet article partage principalement avec vous un exemple pour déterminer si un tableau angulairejs contient un certain élément, c'est-à-dire la fonction in_array, qui détermine si un tableau contient un certain élément.
Array.prototype.in_array = function(e) { for(i=0;i<this.length;i++) { if(this[i] == e) return true; } return false; }
Utilisation :
tmp.in_array(id)
Recommandations associées :
php détermine si l'élément apparaît dans le tableau
Méthode jQuery pour déterminer si un élément est masqué
Code d'implémentation JS pour déterminer si un élément est dans un tableau_compétences javascript
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!