为什么点这个按钮功能什么都没变呢
<input type="button" value="改变颜色" onclick="changeColor">
<input type="button" value="改变宽高" >
<input type="button" value="隐藏内容" >
<input type="button" value="显示内容" >
<input type="button" value="取消设置" >
</form>
<script type="text/javascript">
var text=document.getElementById("text");
//定义"改变颜色"的函数
function changeColor(){
text.style.color="red";
}