Сообщение от Asew
|
пробовал, не срабатывает.
|
свой html исправьте и пропишите свои селекторы.
<!DOCTYPE html>
<html>
<head>
<title>Untitled</title>
<meta charset="utf-8">
<style type="text/css">
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(function() {
$('tr').on('click', 'tr .btn_del,tr .btn_add', function(event) {
var txt = event.delegateTarget.cells[0].textContent;
alert(txt);
})
});
</script>
</head>
<body>
<div id ="test">
<table id ="city">
<tr>
<th>Город</th>
<th>Значение</th>
<th>Действия</th>
</tr>
<tr>
<td>Лондон</td>
<td>1</td>
<td>
<table><tr>
<td><button title = "Удалить" class = "btn_del"></button></td>
<td><button title = "Добавить" class = "btn_add"></button></td></tr>
</table>
</td>
</tr>
<tr>
<td>Париж</td>
<td>2</td>
<td>
<table><tr>
<td><button title = "Удалить" class = "btn_del"></button></td>
<td><button title = "Добавить" class = "btn_add"></button></td></tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>