<script>
function fncDelete(id){
var val =document.getElementById(id).value;
if(confirm('คุณต้องการลบข้อมูลออกจากระบบ ?')){
document.location="delete.php?id="+val; // ค่าที่ส่งไปเป็น GET
}
}
</script>
<input type="text" id="xxx"><input type="button" onclick="fncDelete('xxx')">