一些函数
alert 警告信息
prompt 获取用户输入
console.log 控制台输出
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <script type="text/javascript"> alert("hello"); console.log("world") var a = prompt("please import a world") alert(a) </script> </body> </html>
Welcome to visit