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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<style type='text/css'>
table {border-collapse: collapse;
width:50%;}
td {border :solid 1px blue;}
@media print{
.noprint {display:none;}
}
</style>
<script type='text/javascript'>
function np(chk){
chk.parentNode.parentNode.className=(chk.checked)?'noprint':'';
}
</script>
<title>Nouvelle page 1</title>
</head>
<body>
<table>
<tr>
<td><input type="checkbox" onclick="np(this)" /></td>
<td> ligne 1</td>
<tr>
<tr>
<td><input type="checkbox" onclick="np(this)" /></td>
<td> ligne 2</td>
<tr>
<tr>
<td><input type="checkbox" onclick="np(this)" /></td>
<td> ligne 3</td>
<tr>
<tr>
<td><input type="checkbox" onclick="np(this)" /></td>
<td> ligne 4</td>
<tr>
</table>
</body>
</html> |
Partager