向textfield JavaScript添加变量

时间:2015-10-14 06:19:25

标签: javascript add textfield

对于我的Javascript分配,我必须制作老虎机。

我无法获得的一部分是将我的totalCredits变量添加到我的文本字段中。

它只是将变量放在学分旁边而不是添加它们。 (想要加30 + 2,但我得到302)

我试过parseFloat和parseInt都给了我" ReferenceError:左侧无效分配"

这是功能

    function checkForWin() {

     if (bet1 == true && symbols[rng1].color == symbols[rng2].color && symbols[rng2].color == 
        symbols[rng3].color && symbols[rng1].color == symbols[rng3].color) {

document.getElementById("message").innerHTML = "Same Color You Win 2 Credits";
            totalCredits = totalCredits + 2;

            parseInt(document.getElementById('credits').value) = totalCredits;
            console.log(totalCredits);

     };

代码:https://jsfiddle.net/Socha/ndLn73bw/

1 个答案:

答案 0 :(得分:1)

将其更改为

            total = parseInt(totalCredits) + 2;

            document.getElementById('credits').value = total;