JavaScriptの新機能。これは本当に簡単かもしれませんが、理解できません。関数を実行したい。関数の途中で一時停止し、ユーザーが「Enter」キーを押すのを待ちます。これにより、関数が再び続行できるようになります (または別の関数を呼び出して起動します)。
function appear()
{
document.getElementById("firstt").style.visibility="visible";
//here is where I want the pause to happen until the user presses "enter" key
//Below is what I want to happen after the "enter" key has been pressed.
document.getElementById("startrouter").style.visibility="visible";
}