我是JavaScript的新手,所以我决定学习基础知识并想启动此代码:
<!DOCTYPE html>
<html lang="de">
<head>
<title> JavaScript </title>
<meta charset="UTF-8">
</head>
<body>
<script type="text/javascrip">
var global = 5;
function one(){
var lokal = 4;
document.write(global);
document.write(lokal);
};
function two(){
document.write(global);
};
one();
two();
</script>
</body>
</html>
但是浏览器什么都不做!错误在哪里?
答案 0 :(得分:0)
您没有正确编写此行。其javascript不是“ javascrip”存在拼写错误。
替换
<script type="text/javascrip">
与
<script type="text/javascript">
答案 1 :(得分:0)
错别字:
<script type="text/javascript">
代替<script type="text/javascrip">