Texte et ancre html

chouxe -  
 Utilisateur anonyme -
Bonjour à tous !

Est ce que quelqu'un sait comment faire apparaitre le texte associé à une ancre à des coordonnées précises dans une page

merci bcq

chouxe

2 réponses

  1. dedale82 Messages postés 403 Statut Membre 283
     
    Salut,
    lorsque tu definis ton lien : a href="fichier.html", il faut que tu rajoutes #nom_de_l_ancre comme ca : a href ="fichier.html#nom_de_l_ancre"
    A plus
    4
  2. Utilisateur anonyme
     
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    
    <html>
    <!--
    	Author: Philippe Fery
    	Creation: July 27, 2004
    	philippefery@hotmail.com
    -->
    <head>
    	<title>Untitled</title>
    	<script language="javascript" type="text/javascript">
    		var info=null;
    		function initPage(){
    			anchors = document.getElementsByTagName("a");
    			for(i=0 ; i<anchors.length ; i++){
    				anchors[i].onmouseover=showAnchorText;
    				anchors[i].onmouseout=hideAnchorText;
    			}			
    		}				
    
    		function showAnchorText(){
    			anchorText = this.innerHTML;
    			if(info==null){
    				info = document.createElement("div");
    				info.id="infoWindow";
    				info.name="infoWindow";				
    				info.style.width="320px";
    				info.style.height="100px";
    				info.style.position="absolute";
    				info.style.left="200px";
    				info.style.top="120px";
    				info.style.lineHeight="140%";
    				info.style.padding="10 10 10 10";
    				info.style.fontSize="14px";
    				info.style.textAlign="center";
    				info.style.color="#ff0000";
    				info.style.borderColor="#ff0000";
    				info.style.borderStyle="solid";
    				info.style.borderWidth="1px";
    				info.style.backgroundColor="#ffff88";
    				document.body.appendChild(info);
    			}
    			info.style.visibility="visible";
    			info = document.getElementsByName("infoWindow")[0];
    			info.innerHTML=anchorText;
    		}
    		function hideAnchorText(){
    			info = document.getElementsByName("infoWindow")[0];
    			info.style.visibility="hidden";			
    		}		
    	</script>
    </head>
    
    <body onload="initPage();">
    
    <a>Le texte du premier lien</a>
    <p/>
    blabla
    <p/>
    <a>Autre texte de lien</a>
    <br/>
    <a>Troisième lien</a>
    
    </body>
    </html>
    
    


    ;-)
    HackTrack
    -1