所以,我是javascript的新手。从W3复制/粘贴时,此代码有效。但是当我输入它时,它将无法工作。请你在答案中表现得像我是个白痴,并解释一下我对此一无所知。那里真的没有讽刺。它会帮助我减轻一吨。大声笑我的整个页面很短,因为我只是在摆弄,所以我只是粘贴下面的所有内容。我把星星放在我所指的两个部分旁边。我一直在挖掘几个小时,找不到解决方案。提前感谢你们,感谢他们保持冷静并帮助初学者。
<!DOCTYPE html>
<html>
<head>
<title>Java Testing</title>
<style>
h1
{background-color:black;
font-size:60;
color:white;
text-align:center;}
p
{text-align:center;
color:black;}
</style>
</head>
<body>
<h1>I'm trying out some Java.</h1>
<p>But I'm not entirely sure what I'm doing.</p>
*
<script>
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
</script>
*
*
<script>
document.write(“<h1>This is a heading</h1>”);
document.write(“<p>This is a paragraph.</p>”);
</script>
*
<p>
<button>Try it</button>
</p>
</body>
</html>
答案 0 :(得分:0)
尝试更改第二部分中的引号。这可能是您的编辑的问题。你在使用任何类型的文本处理器吗?这可能是个问题。 Javascript仅支持单引号('
)和双引号("
)。