1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
| <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>teste</title>
<style type="text/css">
body{
background-color:gray;
}
</style>
<script>
function Eleve (prenom, mail){
this.premon = prenom;
this.mail = mail;
this.ajouter_ligne()
}
Eleve.prototype.ajouter_ligne=function(){
var tr_tb=document.getElementById("un_tableau").insertRow(0);
var td_tb=tr_tb.insertCell();
td_tb.textContent=this.premon
td_tb=tr_tb.insertCell();
td_tb.textContent=this.mail
}
onload=function(){
var huey = new Eleve("Huey", "hueu@monemail.com");
var lorel = new Eleve("Lorel", "jesuispashardy@monemail.com");
var hardy = new Eleve("Hardy", "jesuispaslorel@monemail.com");
}
</script>
</head>
<body>
<table id="un_tableau"></table>
</body>
</html> |
Partager