我正在关注JavaScript
上的教程cideon并在Notepad ++中编写了一些示例并将其保存为something.html。问题是,当我使用IE或Chrome打开它时,<script>
和</script>
标记之间的代码根本不会运行。这有什么问题?
<!doctype html>
<html>
<head>
<title>Example of prompt()</title>
<script>
var user_name;
user_name = prompt("What is your name?");
document.write("welcome to my page ")
+ user_name + "!");
</script>
</head>
</html>
答案 0 :(得分:7)
document.write
语句中存在语法错误。
将其写成如下
document.write("welcome to my page "+ user_name + "!");
答案 1 :(得分:0)
有太多&#34;)&#34;
document.write("welcome to my page " + user_name + "!");
答案 2 :(得分:0)
首先,将脚本部分从头部移到body标签。
第二,写
document.write("welcome to my page " + user_name + "!");
在一行中删除第一个右括号。
<!doctype html>
<html>
<head>
<title>Example of prompt()</title>
</head>
<body>
<script>
var user_name;
user_name = prompt("What is your name?");
document.write("welcome to my page " + user_name + "!");
</script>
</body>
</html>
&#13;
答案 3 :(得分:0)