Guest User

Untitled

a guest
Dec 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <h4>Cambio de valores en Select </h4>
  2. <button type="button" onclick="Select_orden('1')" name="button">ordenar Select 1</button>
  3. <button type="button" onclick="Select_orden('2')" name="button">ordenar Select 2</button>
  4.  
  5. <select name="datos_select" id="datos_select" >
  6. <option value="1">Valor 1</option>
  7. <option value="2">Valor 2</option>
  8. </select>
  9. <script>
  10. function Select_orden(valor){
  11. document.getElementById('datos_select').value=valor;
  12. }
  13. </script>
  14.  
  15. ('datos_select')
  16.  
  17. value=valor
Add Comment
Please, Sign In to add comment