我有多个div(每个输入字段都包含一些唯一的ID),这些都是由ejs动态创建的,因此它们都包含相同的类名 strong>。
我想使用jquery从仅一个div形式(匹配唯一ID)进行 ajax调用。我怎样才能做到这一点?
我在Google上发现了很多类似的问题,但不是我想要的。 同样,在您将此标记为重复之前,请至少帮助帮助我。
这是我的代码:
在ejs中:
<% elements.forEach(e => { %>
<input class="uniqId" value="<%=e.id%>">
<button type="button" class="btn">
<% }) %> //looping through all the data i have and storing unique value in input field
在javascript / jquery部分中:
$('.btn').on('click', () => {
$('input.uniqId').val();
//and then i want to perform ajax call from that specific input field data(the one whose button i clicked)
});