Я хочу выбрать все td
из нажатых tr
, кроме td
, который имеет флажок ввода. Следующий код позволяет мне не выбирать td
, который имеет поле ввода:
$(".table-row td:not(:has(input))").click(function(){...}
Но я не смог получить доступ к значению другого td
.
В чем причина проблемы? Как я могу выбрать все td
кроме определенного td
?
.html
<tr data-id="{{ test.id }}" class="table-row">
<td class="form-check">
<div class="form-check">
<label class="form-check-label">
<input class="form-check-input check-ele check-prevent" type="checkbox" value="">
<span class="form-check-sign">
<span class="check"></span>
</span>
</label>
</div>
</td>
<td>{{ forloop.counter }}</td>
<td name="test_name">{{ test.test_name}}</td>
<td name="test_type">{{ test.test_type}}</td>
<td name="test_date">{{ test.test_date|date:"m/d/Y" }}</td>
</tr>
JQuery
$(".table-row td:not(:has(input))").click(function(){
$('#editModal').modal('show');
let row = $(this).closest('tr').attr('data-id');
var test_name = $(this).find('td[ name="test_name" ]').text();
console.log(typeof(test_name));
// return empty test_name. The row I click on has test_name with value `Entrance Exam`
var test_type = $(this).find('td[ name="test_type" ]').text();
var test_date = $(this).find('td[ name="test_date" ]').text();
var date = new Date(test_date);
var day = ("0" + date.getDate()).slice(-2);
var month = ("0" + (date.getMonth() + 1)).slice(-2);
var test_date = date.getFullYear()+"-"+(month)+"-"+(day) ;
$('#edit_test_date').val(test_date);
$("#edit_test_name").val(test_name);
$("#edit_test_type").val(test_type);