gpt4 book ai didi

javascript - 函数中的 JS 简单函数不起作用

转载 作者:行者123 更新时间:2023-11-30 09:46:37 26 4
gpt4 key购买 nike

我想制作这个 1 函数并在函数 2 中调用它。

function d6Roll(){
var d6 = 1 + Math.floor(Math.random() * 6);
}
function attackModifier(){
d6Roll();
var aMod = d6;
document.getElementById("rezultatD6").innerHTML = aMod;
}

出于某种原因,它只能像这样工作:

function d6Roll(){
var d6 = 1 + Math.floor(Math.random() * 6);
document.getElementById("rezultatD6").innerHTML = d6;
}

有没有可能这个函数不能进入另一个函数?

最佳答案

我想你想把第一个函数改成这个

function d6Roll(){
return 1 + Math.floor(Math.random() * 6);
}

这样你就可以像这样在第二个函数中调用它了

function attackModifier(){
var aMod = d6Roll();
document.getElementById("rezultatD6").innerHTML = aMod;
}

关于javascript - 函数中的 JS 简单函数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38673943/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com