ich diese Funktionen bin mit/Dekrement Schieber Variable durch 1.Increment eine Gleitkommazahl HTML/JavaScript
function tstatUP()
{
\t var newValue = document.getElementById("range2").innerHTML;
\t newValue++;
\t if(newValue > 86) newValue = 86;
\t document.getElementById("tstatRange2").value = newValue;
\t document.getElementById("range2").innerHTML = newValue;
}
function tstatDN()
{
var newValue = document.getElementById("range2").innerHTML;
\t newValue--;
\t if(newValue < 72) newValue = 72;
\t document.getElementById("tstatRange2").value = newValue;
\t document.getElementById("range2").innerHTML = newValue;
}
zu erhöhen, aber wenn ich ersetzen newValue ++; mit newValue + = 0.5; Ich sehe nicht definiertes Verhalten, wenn RANGE2 Updates:
als ob es wie ein String behandelt wird.
Ich bin nicht mit HTML erfahren ... hier ist die Schaltfläche HTML:
<div id="tstatSlider">
\t \t \t \t
\t \t \t \t \t \t <h2>Thermostat Setting</h2>
\t \t \t \t \t \t <input id="tstatRange2" type="range" style="width: 200px; height 40px" min="72.0" max="86.0" value="76" step = "0.5" list="increments2" oninput="showMainTstatValue(this.value)" onchange="showMainTstatValue(this.value)">
\t \t \t \t \t \t <datalist id="increments2">
\t \t \t \t \t \t \t <option>72</option>
\t \t \t \t \t \t \t <option>74</option>
\t \t \t \t \t \t \t <option>76</option>
\t \t \t \t \t \t \t <option>78</option>
\t \t \t \t \t \t \t <option>80</option>
\t \t \t \t \t \t \t <option>82</option>
\t \t \t \t \t \t \t <option>84</option>
\t \t \t \t \t \t \t <option>86</option>
\t \t \t \t \t \t </datalist>
\t \t \t \t \t \t <span id="range2">76.0</span>°F
\t \t \t \t \t \t <br/> <br/>
\t \t \t \t \t \t <input type="button" class="button" onclick="sendMainTstatValue()" value = SUBMIT />
\t \t \t \t \t \t <br /><br />
\t \t \t \t \t </div>
\t \t \t \t \t
\t \t \t \t \t <div id="tstatButtons">
\t \t \t \t \t \t <br />
\t \t \t \t \t \t <br />
\t \t \t \t \t \t <input type="button" class="button" value="UP" onclick="tstatUP()">
\t \t \t \t \t \t <br />
\t \t \t \t \t \t <input type="button" class="button" value="DOWN" onclick="tstatDN()">
\t \t \t \t \t </div>
wollte ich dank sagen für die Hilfe früher, aber ich war in China und aus irgendeinem Grund konnte ich nicht durchkommen die große Firewall zu StackOverflow ... kann nicht verstehen, warum sie diese Seite blockieren. –
Kein Problem @JimfromPrinceton, bitte wählen Sie dies als die Antwort, wenn dies Ihre Zweifel löste. – valarauko