如何从div获取innerHTML?

时间:2014-04-21 04:34:03

标签: javascript html cookies innerhtml

我需要保存div的innerHTML并将其存储在cookie中。这是我的基本代码。

//The div-saving function
function addStatus(sName){
    getElement("bottomDiv").innerHTML += sName + "<br>";
    document.cookie="status=" + sName + "<br>";
}

//The button clicking function
function clk(){
    num++;
    document.cookie = "num=" + num;
    switch(num){
        case 25:
            addStatus("25: Alright! Let the games begin!");
        break;
        case 50:
            addStatus("50: Woah! Getting into the high numbers!");
        break;
    }
}

最终发生的事情是只保存最后获得的状态。我需要知道如何获得div的innerHTML。谢谢。

2 个答案:

答案 0 :(得分:2)

试试这个..

 var div= document.getElementById("bottomDiv").innerHTML;

答案 1 :(得分:0)

var holder = document.getElementById("bottomDiv").innerHTML;

以上将获取innerHTML值并将其分配给变量。此外,没有内置函数getElement,您可以使用getElementById,还有其他变体。