这个函数保持返回未定义我已经预先声明了所有的值,我也有一个随机数生成器我尝试了多种方法但似乎无法弄明白
function randomCrystalValue(){
purpleValue = Math.floor((Math.random() * 12) + 1);
// clearValue = randomNumber(1,12);
// greenValue = randomNumber(1,12);
// yellowValue = randomNumber(1,12);
$('#purple').val(purpleValue);
console.log(purpleValue);
// $('#clear').val(clearValue);
// console.log(clearValue);
// $('#green').val(greenValue);
// console.log(greenValue);
// $('#yellow').val(yellowValue);
// console.log(yellowValue);
}
console.log(randomCrystalValue());
答案 0 :(得分:0)
您尝试输出函数randomCrystalValue()的值,但该函数不会返回任何值。
如果您想获取价值,或者不使用console.log
,也许您想在功能结尾添加return purpleValue;