我只想让这个 int 在我的页面上可见。
我的脚本区有这个功能
function showCount()
{
var count = document.getElmentById('friend')
count.style.visibility = 'visible'
count.innerHTML = dDone.toString()
}
在我的网页末尾,我有
<div id="friend">
</div>
同样在我的身体标签中
body onload="showCount()"
--
var qDone = 0
高于功能。我不明白为什么它没有显示。