这是我的代码
<!doctype html>
<html>
<head>
<style>
body {
color:red;
}
</style>
<script>
window.onclick = function(){
document.getElementsByTagName("body").color="blue";
}
</script>
</head>
<body>
here is some text for test
</body>
当我在我的浏览器中运行它(最初它是红色的)并在窗口中单击它不响应单击我的意思是它应该将文本的颜色从红色更改为蓝色但没有任何反应。我哪里错了?