我的问题是:如何获取所点击的行和列的值?
我的代码是:
JS:
$.ajax({
type: 'POST',
url: url,
data: json,
success: function(data) {
var response_array = JSON.parse(data);
var columns = ['id', 'name', 'email', 'telephone', 'website', 'city'];
var table_html = ' <tr>\n' +
'<th id="id">Id</th>\n' +
'<th id="name">Bedrijfnaam</th>\n' +
'<th id="email">E-mail</th>\n' +
'<th id="telephone">Telefoon</th>\n' +
'<th id="website">Website</th>\n' +
'<th id="city">Plaats</th>\n' +
'</tr>';
for (var i = 0; i < response_array.length; i++) {
//create html table row
table_html += '<tr>';
for (var j = 0; j < columns.length; j++) {
//create html table cell, add class to cells to identify columns
table_html += '<td class="' + columns[j] + '" >' + response_array[i][columns[j]] + '</td>'
}
table_html += '</tr>'
};
$("#posts").append(table_html);
},
error: function (jqXHR, textStatus, errorThrown) { alert('ERROR: ' + errorThrown); }
});
这是HTML:
<div class="tabel">
<table id="posts">
</table>
</div>
我尝试了以下内容:
$('#posts').click(function(){
console.log("clicked");
var id = $("tr").find(".id").html();
console.log(id);
});
可悲的是,这只会给我第一行的ID,无论我点击哪里。
感谢任何帮助!
Ramon的
答案 0 :(得分:2)
以下方法应该能够找到ID
$('#post').on('click', function(e){
var id = $(e.target).closest('tr').find(".id").html();
console.log(id)
})
答案 1 :(得分:0)
点击行的HTML内容
$('#posts tr').click(function(){
$(this).html();
});
单击td 中的文字
$('#posts tr td').click(function(){
$(this).text();
});
如果您使用 ajax 并且重绘元素,则不会通过点击功能捕捉到它们。您需要添加功能:
$(document).on('click','#posts tr td','function(){
$(this).text();
});
答案 2 :(得分:0)
您可以尝试为您的表使用AddEventListener,它肯定会起作用。 像这样:
let posts = document.getlementById('posts');
posts.addEventListener('click',(e) => {
// anything you need here, for example:
console.log(e.target);
e.preventDefault();
});
同样 - 没有对网格中的元素使用相同的ID(例如id =&#34; id&#34;你有),它应该是不同的。