1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
| const maTable = document.getElementById('ma-table');
maTable.querySelector('thead').onclick=e=>
{
if (!e.target.matches('button')) return
// console.log( e.target.value )
LeTri(e.target.value)
}
maTable.querySelector('tbody').onclick=e=>
{
if (!e.target.matches('img[data-pochette]')) return
let valInput = e.target.parentNode.querySelector('input').value;
// console.log(e.target.dataset.pochette, valInput)
maFonctionAjax("",e.target.dataset.pochette,"lapochette","","","",valInput,"","","","","","","");
} |
Partager