|
function processForm() {
var temperature = Number(document.tempForm.temp.value);
var tempType;
var result;
for (var i=0; i < document.tempForm.choice.length; i++) {
if (document.tempForm.choice[i].checked) {
tempType = document.tempForm.choice[i].value;
}
}
if (tempType == 'fahrenheit') {
result = temperature * 9/5 + 32;
}
else {
result = (temperature - 32) * 5/9;
}
document.tempForm.resultField.value = result;
}
<html>
<head>
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<form name="tempForm">
<label for="temp">Temperature:</label>
<input type="text" name="temp"><br>
<input type="radio" name="choice" value="fahrenheit" checked />Convert to Fahrenheit <br>
<input type="radio" name="choice" value="celsius">Convert to Celsius <br>
<label for="resultField">Result: </label>
<input type="text" name="resultField"><br>
<input type="button" value="Convert" onclick="processForm()">
</form>
</body>
</html>
_____________________________________________________________________________________
Дата добавления: 2015-08-17; просмотров: 34 | Нарушение авторских прав
<== предыдущая страница | | | следующая страница ==> |
Запрос на ввод данных | | | Счетчик |