I am looking to be able to pass a javascript variable as data in an html table row element and have the data logged when that row element is click. The code that is appending/creating the table rows is inside an ajax call. Outside of the call in a click function I want to click on a table row that was created/appened and get the data variable. Here is the current code
$.ajax({
...
var name = 'superman'
$('#myTable tbody').append('<tr class = 'table_class' id = 'table_id' data-person = name></tr>');
});
...
$('#myTable tbody').on('click','table_class', function(){
console.log($(this).dataset.name);
}
The expected result of the console log is to be: superman.
question from:
https://stackoverflow.com/questions/66049681/javascript-variable-to-html-data-attribute 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…