为什么从 javascript 中的表单输入中检索到的值返回空值或 null 值?

问题描述 投票:0回答:1
javascript html twitter-bootstrap
1个回答
0
投票

读取按钮值的代码在页面加载时立即运行。单击按钮后您需要读取值:

  const button = document.getElementById("submit_button");

  button.addEventListener('click', function() {
    let problem = document.getElementById("problem_selector").value;
    let depth   = document.getElementById("depth_input").value;

    console.log(depth); 
    console.log(problem);
});
© www.soinside.com 2019 - 2024. All rights reserved.