document.write()的java脚本错误

时间:2011-10-03 22:26:52

标签: javascript

我是javascript的新手,并尝试执行以下代码,任何人都可以告诉我为什么只有第一个document.write正在执行而不是其他代码。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>my first java script</title>
</head>
<body>
<script type="text/javascript">
var myhello="hello world, welcome to java script";
var heading="a page of java script";
var linktag="<a href=\"http://www.google.com\">wanna search on google</a>";
var redtext="<span style=\"color:red\">I am so colorful today!</span>";
var begineffect="<strong>";
var endeffect="</strong>";
var beginpara="<p>";
var endpara="</p>";
document.write(begineffect+heading+endeffect);
document.write(begingpara);
document.write(hello);
document.write(endpara);
document.write(begingpara);
document.write(linktag);
document.write(endpara);
document.write(beginpara);
document.write(redtext);
document.write(endpara);
</script>
</body>
</html>

我在所有网络浏览器中测试了以下代码。

3 个答案:

答案 0 :(得分:5)

由于您没有名为hello

的变量,因此会产生错误
var hello = 'define something here';
document.write(hello);

如果您使用网络检查器,使用像chrome或firefox + firebug这样的好浏览器会显示这样的错误。

http://www.google.com/chrome/intl/en/webmasters-faq.html#jsexec

答案 1 :(得分:4)

如果您检查控制台(Chrome中为F12,或为Firefox加载Firebug),则会看到以下错误:

Uncaught ReferenceError: begingpara is not defined

您有许多拼写错误和不正确的变量名称(即您已定义变量但在引用变量时使用了不同的名称) - 更正它们并运行代码。

答案 2 :(得分:-1)

它会覆盖所有内容,以便其他内容不再存在