執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,深色/淺色
前往 Spaces
<!DOCTYPE html> <html> <body> <h1 id="demo"></h1> <script> function renderApp() { document.getElementById("demo").innerHTML = "Welcome!"; } function renderLogin() { document.getElementById("demo").innerHTML = "Please log in"; } let authenticated = true; authenticated ? renderApp() : renderLogin(); </script> <p>Try changing the "authenticated" variable to false, and run the code to see what happens.</p> </body> </html>