Javascript InnerHTML文本没有变化

时间:2013-10-30 18:56:12

标签: javascript html

由于某种原因,ID= employer不会更改为employerCont(这是34.07。它只是继续说test1。有人知道为什么吗?

<div id="main" style="background-color:#F0F0F0; width:500px; height:500px;">&nbsp;</div>
<div id="content" style="background-color:gray; width:500px; height:500px;">
<p id="employer">test1</p>
<p id="employee">test2</p>
</div>

<script src="C:\Documents and Settings\zx08067\Desktop\HSA_RaphaelGraph\raphael.js"></script>
<script src="C:\Documents and Settings\zx08067\Desktop\HSA_RaphaelGraph\g.raphael.js"></script>
<script language="javascript">

function calculatePercentages (var EE, var ER) {
    var sum = EE + ER;
    var EE_perc = EE / sum;
    var ER_perc = ER / sum;

}

//employee and employer contributions
var employeeCont = 251.34;
var employerCont = 34.07;

document.getElementById("employer").innerHTML = employerCont;

calculatePercentages(employeeCont, employerCont);

var tee=[0,0,500,500, 
{type:"path", path:"M58.5,50, C58.5,43 51.5,43 51.5,50, C51.5,57 58.5,57 58.5,50", fill:"green", "stroke-width":"0"},
{type:"path", path:"M52,52 L58,52 L58,70 L55,78 L52,70 L52,52", fill:"green", "stroke-width":"0"}, 
{type:"path", path:"M57,49, C57,46 53,46 53,49 C53,52.5 57,52.5 57,50", fill:"white", "stroke-width":"0"}
];

document.getElementById("main") = Raphael(tee);

</script>

3 个答案:

答案 0 :(得分:5)

输错。

function calculatePercentages (var EE, var ER)

删除变种。

function calculatePercentages (EE, ER)

FIDDLE

答案 1 :(得分:1)

与Cameron的答案类似,尝试在文档加载完成后调用。

window.onload = function(){
    document.getElementById("employer").innerHTML = employerCont;
}

不需要jQuery。

答案 2 :(得分:0)

剥离非关键代码来解决您的具体问题似乎解决了这个问题。 working code on JSBin