gpt4 book ai didi

javascript - 触发事件(jQuery)后如何恢复为 HTML/DOM 中的默认值?

转载 作者:行者123 更新时间:2023-11-28 14:56:17 25 4
gpt4 key购买 nike

如何来回切换,即单击按钮时切换到摄氏度,然后再次单击时恢复到华氏度?当然,这不应该这么难,但我在这里遗漏了一些东西。

相关代码如下:

HTML

<!DOCTYPE html>
<html>
<head>
<title>Ancient</title>
</head>
<body>
<h1><span id="temp1">-40</span> &deg;<span class="units">F</span></h1>
<p><span id="temp2">-28</span> &deg;<span class="units">F</span></p>
<button>Show Celsius</button>
<script
src="https://code.jquery.com/jquery-3.1.1.js"
integrity="sha256-16cdPddA6VdVInumRGo6IbivbERE8p7CQR3HzTBuELA="
crossorigin="anonymous">
</script>
<script
src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous">
</script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?sensor=false"></script>
<script src="fahtocels.js" type="text/javascript"></script>
</body>
</html>

jQuery

$(function() {
let $temp1 = Number($("#temp1").text()),
$temp2 = Number($("#temp2").text()),
$units = $(".units").text();

function fahrToCels(F) {
return ((5/9) * (F - 32)).toFixed(2);
}

$("button").on("click", function() {
$(this).html("Show Fahrenheit")
$("#temp1").html(fahrToCels($temp1));
$("#temp2").html(fahrToCels($temp2));
$(".units").html("C");
});
});

最佳答案

它能够在摄氏度和华氏度之间来回转换。您缺少的是一个将其转换回来的函数,以及一个检查当前单位是什么的函数。此版本修复了该问题。

$(function() {
let $temp1 = Number($("#temp1").text()),
$temp2 = Number($("#temp2").text()),
$units = $(".units").text();

function fahrToCels(F) {
return ((5/9) * (F - 32)).toFixed(2);
}

function celsToFahr(C) {
return (C * 9/5 + 32).toFixed(2);
}

$("button").on("click", function() {
if ($(".units").html() === "C") {
$(this).html("Show Celcius")
$("#temp1").html(celsToFahr($temp1));
$("#temp2").html(celsToFahr($temp2));
$(".units").html("F");
} else {
$(this).html("Show Fahrenheit")
$("#temp1").html(fahrToCels($temp1));
$("#temp2").html(fahrToCels($temp2));
$(".units").html("C");
}
});
});

关于javascript - 触发事件(jQuery)后如何恢复为 HTML/DOM 中的默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42707506/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com