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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<script type="text/javascript">
var comportements = {
randomlaunch: function(){
rand=Math.floor(Math.random()*4)+1
this['alert'+rand]()},
alert1:function()
{
alert("comportement1");
},
alert2:function()
{
alert("comportement2");
},
alert3:function()
{
alert("comportement3");
},
alert4:function()
{
alert("comportement4");
}
};
</script>
<title>Nouvelle page 1</title>
</head>
<body>
<input type="button" onclick="comportements.randomlaunch()" value='go' />
</body>
</html> |