1 2 3 4 5 6 7 8 9 10 11
   | //aucune fonction gloable, aucune variable globale, aucun objet global
window.onload = function(){
  //ajout de la methode onclick seulement sur l'objet concerné
  document.getElementById('the_image1').onclick = function ()
  {
    //utilise l'attribut 'fiche' de l'objet courant pour obtenir le numero de fiche
    window.open('FicheV3.ASP?Numero=' + this.fiche, 'FicheV3', 'scrollbars=yes,resizable=no,width=1100,height=850,left=30,top=30');
    //maitrise du comportement de la methode
    return false;
  }
} |