gpt4 book ai didi

Javascript 类型错误 : result of expression is not an object

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:00:25 25 4
gpt4 key购买 nike

这应该很简单...但它不是...>.<

var x = document.getElementById('x');
function snooze()
{
x.style.height = '10px';
}

执行后,我得到的错误是:

TypeError:表达式 'x' [null] 的结果不是对象。

编辑:注意,当我将 var 声明放入函数中时它会起作用。我不明白...:-(

function snooze()
{
var x = document.getElementById('x');
x.style.height = '10px';
}

最佳答案

或者:

  1. 页面上没有 id="x" 的元素。
  2. 代码在加载文档之前运行。

如果存在 id="x" 的元素,尝试:

window.onload = function () {
// your code in here
};

关于Javascript 类型错误 : result of expression is not an object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5754224/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com