我目前正在使用 javascript 并试图掌握它。我想知道如何在一行中获得每个问候,而不是一个接一个接一个接一个。希望我的问题有意义。
window.onload = function() {
getGreeting();
};
for(var hours=0; hours < 24; hours++)
{
document.getElementById("loop").innerHTML = document.getElementById("loop").innerHTML + "\n" + getGreeting(hours);
}
function getGreeting(hours) {
var greetingText;
if (hours >=6 && hours < 12) {
greetingText = "Good morning!";
} else if (hours >= 12 && hours < 17) {
greetingText = "Good afternoon!";
} else if (hours >= 17 && hours < 23) {
greetingText = "Good Evening!";
} else if (hours >= 23 || hours < 6) {
greetingText = "Go to sleep!";
}
return greetingText;
}
http://jsfiddle.net/priswiz/KcS5b/ 您在 jsfiddle 文件中看到问候语一个接一个地排列,我想知道如何每行获得一个。
谢谢!