未定义getElementById

未定义getElementById

本文介绍了为什么收到"ReferenceError:未定义getElementById"?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我写了一些JavaScript代码,由于某种原因,我收到一条错误消息:

I have a little JavaScript code I wrote, and for some reason I'm getting an error saying:

ReferenceError: getElementById is not defined

这是函数:

window.onload=function()
{
    clearAll();
    updatePizzaToppings();
    updatePizzaToppings();
    updatePizzaToppings();
    updatePizzaToppings();
};


function updatePizzaToppings()
{
    var checkBox=getElementById('selectBacon');
    var pic=getElementById('BaconPic');
    if (checkBox.checked)
    {
        pic.style.visibility='visible';
    }
    else
    {
        pic.style.visibility='hidden';
    }
};

我也为此做了一些JSFiddle.

I've made a little JSFiddle for it as well.

http://jsfiddle.net/CkjkB/5/

推荐答案

您需要使用 document.getElementById()

You need to use document.getElementById()

这篇关于为什么收到"ReferenceError:未定义getElementById"?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 13:28