我想将函数返回到函数表达式。我不确定最好的解决方法。
const btn = document.querySelector(‘#btn’);
const textValue = document.querySelector(#textBox);
var jobQuestion =
btn.addEventListener(click, function() {
interviewQuestion(textValue);
})
function interviewQuestion(job) {
if (job.value === “driver”) {
return function() {
console.log(“have you had a speeding fine before”);
}
} else if (job.value === “doctor”) {
return function() {
console.log(“what university did you go to ? ”)
}
}
}
jobQuestion();
textValue是输入类型文本框。这是合法的方式吗?非常抱歉。我的妻子正在笔记本电脑上班,所以我在手机上做噩梦。谢谢大家