一些函数

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>

  

posted @ 2019-07-23 10:01  Django_gege  阅读(81)  评论(0编辑  收藏  举报