Guest User

Untitled

a guest
Jul 15th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. <script type="text/javascript">
  2. function sig(){
  3. var array = new Array(" Disponible ", " Ocupado ", " Mantenimiento ",);
  4. for(i=0; i < array.length; i++){
  5. if(document.getElementById('Fmbtn').value == array[i]){
  6. var indice = (i + 1 == array.length) ? 0 : i + 1;
  7. document.getElementById('Fmbtn').value = array[indice];
  8. localStorage.setItem("estado", array[indice]);
  9. break;
  10. }
  11. }
  12. }
  13. window.onload=function()
  14. {
  15.  
  16. if(localStorage.getItem("estado")!=null)
  17. {
  18. estado =localStorage.getItem("estado");
  19.  
  20. document.getElementById('Fmbtn').value = estado;
  21. }
  22. }
  23.  
  24. <div class="row" style="text-align:center">
  25. <div class="span2">
  26. <div class="well well-small">
  27. <h4>Habitación 1
  28. </h4>
  29. <input id="Fmbtn" type="button" value=" Disponible " onclick="sig()" />
  30. <a href="habitacion1.php"><small>Ver detalles</small></a>
  31. </div>
  32. </div>
Add Comment
Please, Sign In to add comment