Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

167
Visualizações
HTML buttons switch

I have four buttons, each deciding which speed the fan in a hotel room should have. SO if the user clicks on one button other buttons should be in OFF mode. Any ideas on how to achieve it?

Now I have four buttons that users can turn on simultaneously, which does not make sense for my application.

$("#wentAOnOff").click(function() {
        $.ajax({
            url:'do',
            type:'POST',
            data: {
                actions:[
                    {action: "set", what: "mbt", id: "1175", val: 1},
                    {action: "set", what: "mbt", id: "1062", val: 1},
                ]
            },
            success: function(res) {
            },
            error : function() {
            }
        });
    });

    $("#went1OnOff").click(function() {
        $.ajax({
            url:'do',
            type:'POST',
            data: {
                actions:[
                    {action: "set", what: "mbt", id: "1176", val: 1},
                    {action: "set", what: "mbt", id: "1062", val: 1},
                ]
            },
            success: function(res) {
            },
            error : function() {
            }
        });
    });
    $("#went2OnOff").click(function() {
        $.ajax({
            url:'do',
            type:'POST',
            data: {
                actions:[
                    {action: "set", what: "mbt", id: "1177", val: 1},
                    {action: "set", what: "mbt", id: "1062", val: 1},
                ]
            },
            success: function(res) {
            },
            error : function() {
            }
        });
    });
    $("#went3OnOff").click(function() {
        $.ajax({
            url:'do',
            type:'POST',
            data: {
                actions:[
                    {action: "set", what: "mbt", id: "1178", val: 1},
                    {action: "set", what: "mbt", id: "1062", val: 1},
                ]
            },
            success: function(res) {
            },
            error : function() {
            }
        });
    });
about 4 years ago · Juan Pablo Isaza
3 Respostas
Responde à pergunta

0

Use a class and data attributes

const $went = $(".went")// all 4 buttons by class
  .on("click", function() { // any of them
  const id1 = this.dataset.id1;
  const id2 = this.dataset.id2;
  $went.removeClass("active");
  $(this).addClass("active");
/*
  $.ajax({
    url:'do',
    type:'POST',
    data: {
      actions:[
        {action: "set", what: "mbt", id: id1, val: 1},
        {action: "set", what: "mbt", id: id2, val: 1},
      ]
    },
    success: function(res) { },
    error : function() { }
  });
*/  
});
.active { background-color: red; }
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button class="went" data-id1="1175" data-id2="1062">Off</button>
<button class="went" data-id1="1176" data-id2="1062">Off</button>
<button class="went" data-id1="1177" data-id2="1062">Off</button>
<button class="went" data-id1="1178" data-id2="1062">Off</button>

about 4 years ago · Juan Pablo Isaza Relatório

0

it's not that clear to me what is the problem, turn off the 3 other buttons or the ajax calls? What doesn't make sense?

Anyway, you can iterate all the buttons on every click and switch off the ones that are not the button the user clicked on. You can use jQuery to get all the buttons and iterate them. Because you have the ID of the clicked element you can turn off all the other buttons.

about 4 years ago · Juan Pablo Isaza Relatório

0

I borrowed much of this from https://stackoverflow.com/a/72828887/125981 but added ability to turn all the fans off with one click; and toggled the text in CSS by using a data attribute not toggling of classes.

const $went = $(".went"); // all 4 buttons by class
$went.on("click turnoff", function(event) { // any of them
  const id1 = this.dataset.id1;
  const id2 = this.dataset.id2;
  this.dataset.fan = this.dataset.fan === "off" ? "on" : "off";;
  if (event.type === "turnoff") {
    this.dataset.fan = "off";
  }

  let mydata = {
    actions: [{
        action: "set",
        what: "mbt",
        id: id1,
        val: 1
      },
      {
        action: "set",
        what: "mbt",
        id: id2,
        val: 1
      },
    ]
  };

  /*
    $.ajax({
      url:'do',
      type:'POST',
      data:mydata
      })
      .done(result){})
      .fail(xrf){});
  */
});
$('.all-off').on('click', function() {
  $went.trigger('turnoff');
});
.went[data-fan="on"] {
  background-color: #ddffdd;
}

.went[data-fan="on"]:after {
  content: 'On';
}

.went[data-fan="off"] {
  background-color: #ffdddd;
}

.went[data-fan="off"]:after {
  content: 'Off';
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<button class="went" data-id1="1175" data-id2="1062" data-fan="off"></button>
<button class="went" data-id1="1176" data-id2="1062" data-fan="off"></button>
<button class="went" data-id1="1177" data-id2="1062" data-fan="off"></button>
<button class="went" data-id1="1178" data-id2="1062" data-fan="off"></button>
<button class="all-off">All Off</button>

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda