mettre focus sur href

mettre focus sur href - HTML/CSS - Programmation

Marsh Posté le 30-09-2002 à 16:12:24    

Je souhaite mettre le focus sur un href qui represente un bouton apres avoir selectionné une option.
 
 
<tr>
<form name="EditServiceForm" method="post" action="Service.jsp">
<input type="hidden" name="MODE" value="EDIT">
  <td class="graphTextBold" align="left" width="321">
    <table width="64" border="0" cellspacing="0" cellpadding="0">
  <tr>
      <td bgcolor="#CCCCCC" nowrap class="text" height="19" width="140">  
// ICI LE HREF
        <a href="#" class="bouton" onClick="formSubmit(document.EditServiceForm)">
        EDIT SERVICE INFO</a>  
      </td>
  </tr>
   </table>
 </td>
  <td width="317" class="text">
// ICI LE SELECT
    <select name="SER_ID">
    <option value=""> </option>
      <option value="1245">Service 01</option>
      <option value="1246">Service 02</option>
      <option value="1247">Service 03</option>
  </select>
 </td>
</form>
</tr>
 
suggestion: je rajoute la methode onChange dans l'objet Select et apres .... je ne sais pas

Reply

Marsh Posté le 30-09-2002 à 16:12:24   

Reply

Marsh Posté le 30-09-2002 à 16:27:42    

<a href="toto.html" name="titi" id="titi">toto</a>
<select .... onchange="document.getElementById('titi';).focus();">
 
 
edit marche avec mozilla 1 mais ca a pas l'air avec ie6...


Message édité par kayasax le 30-09-2002 à 16:33:57

---------------
All we need is a soul revolution
Reply

Marsh Posté le 30-09-2002 à 17:13:09    

merci je vais tester
 
je vais egalement tester ca
document.EditServiceForm.link[0].focus()

Reply

Marsh Posté le 30-09-2002 à 17:26:00    

ca marche!!! sous ie6.0
 
<a href="#" class="bouton" name="EDIT_SERVICE" id="EDIT_SERVICE" onClick="formSubmit(document.EditServiceForm)">
EDIT SERVICE INFO</a>
<select name="SER_ID" onChange="document.getElementById('EDIT_SERVICE';).focus()">
 
 
merci

Reply

Marsh Posté le 30-09-2002 à 18:14:50    

Ngok a écrit a écrit :

ca marche!!! sous ie6.0
 
<a href="#" class="bouton" name="EDIT_SERVICE" id="EDIT_SERVICE" onClick="formSubmit(document.EditServiceForm)">
EDIT SERVICE INFO</a>
<select name="SER_ID" onChange="document.getElementById('EDIT_SERVICE';).focus()">
 
 
merci




pas dkoi mais c bizarre moi dtaleur ca marchait pas avec ie6 (mais ca marche avec le preview de mon editeur qui normalement est sense utilise ie  :??:  :pt1cable: )
 


---------------
All we need is a soul revolution
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed