Как сделать идентификатор селекторов jquery уникальным в ваших атрибутах HTML-тегов?
Привет Команда
Я изо всех сил пытаюсь найти способ в Jquery selectors ID unique, в основном хочу получить доступ к одному конкретному идентификатору моей кнопки, чтобы работать через все мои флажки. Есть ли способ сделать это в Jquery? Я не хочу, чтобы мой флажок загружался до того, как один пользователь выберет его, то есть то, что код делает в данный момент. формат файла правильный, это просто способ сделать этот идентификатор уникальным во всех моих чекбоксах для кнопки, чтобы увидеть их, кажется, его невозможно достичь.
Что я уже пробовал:
div class = "custom-control custom-checkbox"> <input type="checkbox" class ="custom-control-input" id="temperature"> <label class = "custom-control-label" for="temperature">Temperature</label> </div> <div class = "custom-control custom-checkbox"> <input type = "checkbox" class="custom-control-input" id="illuminance"> <label class = "custom-control-label" for = "illuminance">Illuminance</label> </div> <div class ="custom-control custom-checkbox"> <input type ="checkbox" class="custom-control-input" id="button-state"> <label class ="custom-control-label" for = "button-state">Button-State</label> <pre lang="HTML"><!---Downloading File using Jquery with Buttons----> <div class="form-group"><br> <div class="col-md-1.9 text-center"> <button id="download" name="download" class="btn btn-warning" >Download</button><br> </div> </div> // checking for one field entry to read. $(document).ready(function() { $('#temperature').click(function() { var xcount = 0; if($('.temperature').prop('checked')) xcount--; if(xcount < 1) { window.location.href ='https://api.thingspeak.com/channels/899906/fields/1.csv'; } }); }); // checking for two field entry to read. $(document).ready(function() { $('#download').click(function() { var ncount = 0; if($('.illuminance').prop('checked')) ncount--; if(ncount < 1) { window.location.href ='https://api.thingspeak.com/channels/899906/fields/2.csv'; } }); }); // checking for third entry to read. $(document).ready(function() { $('#download').click(function() { var qcount = 0; if($('.button-state').prop('checked')) qcount--; if(qcount < 1) { window.location.href ='https://api.thingspeak.com/channels/899906/fields/8.csv'; } }); });
Herman<T>.Instance
Я не вижу "температуры" в вашем HTML-коде
gcogco10
Температура
Afzaal Ahmad Zeeshan
Он имеет в виду, что ваш HTML-код не содержит элемента с идентификатором temperature
- Вы уверены, что это полный код?