所以,作为我的第一个项目之一,我尝试做一个小型彩票抽奖网站,但我无法在网站上显示winPercentage
的{{1}}变量。它只是保持空白。为什么呢?
script.js
部分:
script.js
HTML部分:
var winPercentage = winCount / gameCount * 100;
document.getElementById("winPercentageID").innerHTML = winPercentage;
答案 0 :(得分:1)
您的身份winPercentageId
与 class A {
@XmlIDREF
List<B> myListA = new ArrayList<B>();
....
}
class B {
List myListB<C> = new ArrayList<C>();
@XmlID
private String getStringId() {
return id;
}
不匹配(大写“ID”与“Id”)
答案 1 :(得分:0)
winPercentageId
我认为存在拼写错误问题:
不同的位置
span
位于document.getElementById("winPercentageID")
与{{1}}
改变一下......
答案 2 :(得分:0)
如果你想用jQuery做这件事。
var winPercentage = winCount / gameCount * 100;
$("#winPercentageID").html(winPercentage)