我想要如何調用函數中的函數。如何在JavaScript中調用函數中的函數
這是我的函數:
function TempConvert() {
var tempVal = prompt('Enter a temperature');
var newTemp;
newTemp = (tempVal - 32/1.8 + 273.15);
alert(newTemp);
}
這需要它被稱爲:
function iMenu() {
var choice = prompt("Type in a number for the corresponding option\nOption 1: Temperature Converter\nOption 2: Option 2\nOption 3: Exit");
if (choice == "1") {
// TempConverter needs to go here <<----
}
else if (choice == "2") {
alert('Option2');
}
else {
alert('Bye');
return;
}
}
感謝。我試過把它放在那裏,但它沒有效果。
http://eloquentjavascript.net/chapter3.html –
你能說明這些函數是如何位於整個代碼中的嗎?看起來像某種範圍的問題,所以我們需要知道什麼是什麼功能。 – kmoe