I would like to archive that I have an Array, with 3-4 Items and then I want to itterate throw all of them and change the selector in the function with the items of the array.
JavaScript
x
2
1
let items = ['Name','Person,'New']
2
then my function
JavaScript
1
2
1
$('.btn').on("click", function(){do smth});
2
and then the foreach .btn should be like name or person, and I want maybe to add late more Items to the array. How should I do it?
for 3 functions
$('.name .btn').on("click", function()){do smth.})
$('.name .test').on("click", function()){do smth.})
$('.name .dosmth').on("click", function()){do smth.})
Name should be replaced with item of the array
I want unique function for the elements
Advertisement
Answer
Try this:
JavaScript
1
24
24
1
let items = ['name', 'person', 'new']
2
let elements = [{
3
name: 'btn',
4
callback: () => {
5
// do something
6
}
7
},
8
{
9
name: 'test',
10
callback: () => {
11
// do something
12
}
13
},
14
{
15
name: 'dosmth',
16
callback: () => {
17
// do something
18
}
19
}
20
]
21
items.forEach(item =>
22
elements.forEach(element => $(`.${item} .${element.name}`).on("click", element.callback()))
23
)
24