Visualizzazione dei risultati da 1 a 2 su 2
  1. #1

    Accesskey non funziona in Google Chrome

    Buon giorno ho problemi nel far funzionare le accesskey con google chrome:
    codice:
    home
    Ho scaricato un plug-in per individuare il numero corrispondente del link con l'accesskey, ho provato con i vari:
    Alt+numero
    Shift+numero
    Alt-Shift+numero

    ma non funziona...
    Cosa c'č che non vā?

    Per gli altri browser tutto ok...

  2. #2
    praticamente google chrome ha problemi con i link, ma non con le input text trasformate in link..posto il codice per farvi capire il problema:
    codice:
    <head>
    
    	<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1" />
    
    	<title>Accesskey bug</title>
    
    	<style type="text/css">
    
    		input.buttonlink {
    
    			border: 0px;
    
    			background-color: Transparent;
    
    			color: Blue;
    
    
    
    			margin: 0px;
    
    			padding: 0px;
    
    			cursor: pointer;
    
    			cursor: hand;
    
    
    
    			text-align: left;
    
    			position: relative;
    
    
    
    			width: auto;
    
    		}
    		
    		
    		#StyleNormal {
    
    			border: 0px;
    
    			background-color: Transparent;
    
    			color: Blue;
    
    
    
    			margin: 0px;
    
    			padding: 0px;
    
    			cursor: pointer;
    
    			cursor: hand;
    
    
    
    			text-align: left;
    
    			position: relative;
    
    
    
    			width: auto;
    
    		}
    	</style>
    
    </head>
    
    <body>
    
    	<form id="form" method="post" action=".">
    
    		
    
    
    
    			Press alt+g to activate the link button below and go to google.com
    
    
    			<input type="submit" name="btnGoogle" onclick="document.location = 'http://www.google.com'; return false;" accesskey="1" value="Go to Google" class="buttonlink" />
    
    
    		</p>
    
    		
    
    
    
    			<input name="text" type="text" value="Press alt+t to focus this field and then you can change the text." accesskey="2" style="width:700px;" />
    		
    		</p>
    		Normale
    	</form>
    
    	
    
    </body>
    
    </html>
    quindi, qualcuno di voi sā se si puō ovviare in qualche modo?
    grazie

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.