我觉得我正在进步一点,当我遇到Javascript时,我仍然很难搞清楚要做什么。这很难,但我需要紧急完成这个编码..所以任何帮助都非常感谢。
这很简单,我想用Kelvin,Celsius和Fahrenheit制作我自己的转换器。所以我做了这3个变量,但我意识到他们需要自己的公式,所以我需要一个不同的结果变量吗?如果是这样,它会去哪里?所有这些功能都令人困惑。 这是我的代码。
<form>
Kelvin is
<input id="kelvin" size="7" maxlength="5" type="text" placeholder="vul in" />
<p></p>
Celsius is
<input id="celsius" size="7" maxlength="9" type="text" placeholder="vul in" />
<p></p>
Fahrenheit is
<input id="fahrenheit" size="7" maxlength="9" type="text" placeholder="vul in" />
<p></p>
<input id="calculate" type="button" value="Bereken!" />
</form>
<div id="calc">Dit is kelvin
<p></p>dit is celsius
dit是华氏度
然后是脚本
<table cellSpacing=0 cellPadding=0 width=250 border=0>
document.getElementById('calculate').addEventListener('click', function() {
var kel= document.getElementById("kelvin").value;
var cel = document.getElementById("celsius").value;
var far = document.getElementById("fahrenheit").value;
var div = document.getElementById('calc');
if (( kel < 0 || cel < -273 || far < -459 || isNaN(kel) || isNaN(bev)) {
div.innerHTML = "Not valid!";
return;
}
kel = parseInt(kelvin); cel = parseInt(celsius); far = parseInt (fahrenheit);
var far = (cel * (9/5) + 35;
var kel = cel + 273;
var cel = kel - 273;
var cel = (far -32)*(5/9);
if (far = kel ) {
var text = "hello? what to do here";
}
div.innerHTML = "Het is <b>" + kelvin+ "</b> Kelvin <p></p> en het is <b>" + celcius + "</b>" en het is <b>" + fahrenheit + "</b>";
}, false);
答案 0 :(得分:0)
首先
if (far = kel ) {
var text = "hello? what to do here";
}
应该是
if (far === kel ) {
var text = "hello? what to do here";
}
=用于定义变量,例如。 var a = 10;
===用于比较两个值
另外,你把
<table cellSpacing=0 cellPadding=0 width=250 border=0>
在脚本中间。我希望这是一个错误。
哪个写得最好
<table cellspacing='0' cellpadding='0' width='250' border='0'>
符合更严格的XHTML标准。
另外,这个:
if (( kel < 0 || cel < -273 || far < -459 || isNaN(kel) || isNaN(bev)) {
div.innerHTML = "Not valid!";
return;
}
需要替换为:
if ( kel < 0 || cel < -273 || far < -459 || isNaN(kel) || isNaN(cel) || isNaN(far)) {
document.getElementById('calc').innerHTML = "Not valid!";
}
而且:
kel = parseInt(kelvin); cel = parseInt(celsius); far = parseInt (fahrenheit);
应阅读:
kel = parseInt(document.getElementById("kelvin").value); cel = parseInt(document.getElementById("celcius").value); far = parseInt (document.getElementById("fahrenheit").value);
答案 1 :(得分:0)
克莱斯也有一个好处。
if(kel != ''){
//Kelvin is the chosen one
}else if(far != ''){
//Fahrenheit is the chosen one
}else if(cel != ''){
//Celcius is the chosen one
}else{
//User hasn't written anything
alert('You need to write something to convert!');
}