jQuery如何使$(this)选择器触发多个类
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery如何使$(this)选择器触发多个类相关的知识,希望对你有一定的参考价值。
我有两个具有相同包含的不同类的表。表1显示在主要部分,第二个表显示在弹出功能上。两个表仍然在同一页面上的html。
我有一个使用2个类选择器的点击功能,我希望可以在单击时触发两个表并更改两个表包含。但是click函数只能在一个表中工作,而不能在两个表中工作。
请注意,第二个表是动态创建的,并不总是存在。
如何在每次单击时触发两个表,如果第二个表不存在则不返回错误。
我的代码:
$('.table1 a.name, .table2 a.name').click(function(c){
c.preventDefault();
var $item = $(this);
var checked = $('<img class="checked" src="https://findicons.com/files/icons/1964/colorcons_green/128/checkmark.png" width="30" height="30">');
//$.post("", {data:datas},function(data){
// some ajax result
$($item).before(checked);
$('img.checked').not(checked).remove();
//});
});
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h2>Table 1</h2>
<table class="table1">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com">Alfreds Futterkiste</a></td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/2">Centro comercial Moctezuma</a></td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/3">Ernst Handel</a></td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
</table>
<br>
<h2>Table 2</h2>
<table class="table2">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com">Alfreds Futterkiste</a></td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/2">Centro comercial Moctezuma</a></td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/3">Ernst Handel</a></td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
</table>
答案
从这 - Event binding on dynamically created elements?
jQuery中的on
函数只能直接将事件附加到已创建的元素。
例如,您可以使用以下代码动态创建table2
-
$('body').on('click', '.table2 a.name', function (event){
//Code here
});
当点击body
时,检查目标是否为.table2 a.name
,如果是,则执行该功能。
另一答案
我找到了这篇文章的解决方法。
问题是在jQuery中,点击函数上的函数this
只是指被点击的元素。即使它们具有相同的内容,它也从未计入被声明为选择器的其他元素。
因此,如果您在多个元素中具有相同的内容,那么解决方案是使用filter
函数来搜索相同的值,然后您可以在操作中将它们全部强制为一个。
在我的情况下,我只需要在所有元素中标记相同的a href
值。
更新的代码段
$('.table1 a.name, .table2 a.name').click(function(c){
c.preventDefault();
var $item = $(this).attr('href');
var checked = $('<img class="checked" src="https://findicons.com/files/icons/1964/colorcons_green/128/checkmark.png" width="30" height="30">');
//$.post("", {data:datas},function(data){
// some ajax result
//$($item).before(checked);
var marked = $('.table1 a.name, .table2 a.name').filter(function() {
$('img.checked').not(marked).remove();
return $(this).attr('href') === $item;
}).before(checked);
//});
});
table {
font-family: arial, sans-serif;
border-collapse: collapse;
width: 100%;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h2>Table 1</h2>
<table class="table1">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com">Alfreds Futterkiste</a></td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/2">Centro comercial Moctezuma</a></td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/3">Ernst Handel</a></td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
</table>
<h2>Table 2</h2>
<table class="table2">
<tr>
<th>Company</th>
<th>Contact</th>
<th>Country</th>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com">Alfreds Futterkiste</a></td>
<td>Maria Anders</td>
<td>Germany</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/2">Centro comercial Moctezuma</a></td>
<td>Francisco Chang</td>
<td>Mexico</td>
</tr>
<tr>
<td><a class="name" href="https://stackoverflow.com/3">Ernst Handel</a></td>
<td>Roland Mendel</td>
<td>Austria</td>
</tr>
</table>
以上是关于jQuery如何使$(this)选择器触发多个类的主要内容,如果未能解决你的问题,请参考以下文章