jQuery Toggle Fahrenheit / Celsius

时间:2017-06-27 17:42:46

标签: javascript jquery openweathermap

我正在尝试使用Open Weather Map API创建一个天气应用程序。我想创建一个按钮,允许您在华氏度和摄氏度之间切换。我尝试了所有的东西,但是在我尝试按下按钮之前,我已经回到了我写的代码。

我如何使用当前设置实现此功能?

<div class="container">

    <div class="jumbotron text-center" 
style="background-color: #00F0F8FF; font-family: 'Oswald', sans-
serif; color: black;">
        <h1>Local Weather App</h1>
        <h2><span id="town"></span></h2>
        <h2>Temperture: <span id="temp"></span></h2>
        <div id="weatherIconBox"></div>
        <h2><span id="weatherType"></span></h2>
        <button type="submit" id="btn1">F&#176;</button>
        <button type="submit" id="btn2">C&#176;</button>

    </div>
</div>

var getIP = 'http://ip-api.com/json/';
var openWeatherMap = 'http://api.openweathermap.org/data/2.5/weather'
$.getJSON(getIP).done(function(location) {
$.getJSON(openWeatherMap, {
    lat: location.lat,
    lon: location.lon,
    units: "imperial",    
}).done(function(data) {
    $('#town').html(data.name);
    $('#temp').prepend(Math.floor(data.main.temp) + '&#176;');
$('#weatherType').html(data.weather[0].description).css('textTransform', 'capitalize');
$('#weatherIconBox').prepend('<img id="weatherIcon"     src="http://openweathermap.org/img/w/' + data.weather[0].icon +     '.png"/>');

    });
});

3 个答案:

答案 0 :(得分:1)

点击&#34; #temp&#34;元素,此代码将在摄氏和华氏之间切换文本

&#13;
&#13;
var cToF = function(c) {
  return (c * (9/5)) + 32;
};

var fToC = function(f) {
  return (f - 32) * (5/9);
};

$("#temp").on("click", function() {
  var isF = $(this).data("units") === "f";

  var oldTemp = $(this).text();
  var newTemp = isF ? fToC(oldTemp) : cToF(oldTemp);
  $(this).text(newTemp);

  var newUnits = isF ? "c" : "f";
  $(this).data("units", newUnits).attr("data-units", newUnits);
 });
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<h2>Temperature: <span id="temp" data-units="f">100</span></h2>
&#13;
&#13;
&#13;

<h2>Temperture: <span id="temp"></span></h2>

答案 1 :(得分:0)

我还在使用API​​来创建一个辅助项目。

你能试试吗?默认情况下以华氏度显示数据。当您单击Celcius切换按钮时。做一个简单的数学计算。我认为等式是((f + 40)÷1.8) - 40 = c。然后显示该值。

答案 2 :(得分:0)

对数学计算要谨慎......
你必须使用正确的公式!

这是一个简单的切换按钮,可以进行数学运算。

var temp = "c";
var tempEl = $('#temp');

$("#tempToggle").on("click",function(){
  
  // Get actual shown temperature
  var tempVal = parseFloat(tempEl.val());
  
  if(temp=="f"){
    temp="c";
    // Calculate
    var converted = (tempVal-32)/(9/5);
    // Set
    tempEl.val(converted.toFixed(1));
    $(this).html("C&#176;");
  }else{
    temp="f";
    // Calculate
    var converted = (tempVal*1.8)+32;
    // Set
    tempEl.val(converted.toFixed(1));
    $(this).html("F&#176;");
  }
});
#temp{
  width:3.2em;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

<input type="text" id="temp" value="20.5"> 
<button type="button" id="tempToggle">C&#176;</button>