e.target.value 的值未定义
Value of e.target.value undefinned
我有一个 let: valorImput,来自输入的 e.target.value。
我使用此值将其与数组中的值进行比较并且它有效。但是当我想获得它的价值时,它说未定义,我无法在未来的功能中使用它。
这是一个 link 到 Codesand 的完整代码。
let valorImput = "";
dropDown.onchange = (e) => {
valorImput = e.target.value;
console.log("dropdown onchange console", e.target.value);
};
btn.onclick = (e) => {
const existe = productos.find((x) => x.titulo === valorImput);
existe ? (precio = existe.precio) : console.log("NO hay Nada");
document.getElementById("valorDeSelect").value = precio;
Swal.fire("El precio esta expresado en Dolares!", "USD " + precio, "success");
console.log("valor input", valorImput);
};
变量 valorImput
必须在全局范围内声明(在任何“{}”括号之外)。
有关详细信息,请参阅 documentation。
我有一个 let: valorImput,来自输入的 e.target.value。 我使用此值将其与数组中的值进行比较并且它有效。但是当我想获得它的价值时,它说未定义,我无法在未来的功能中使用它。 这是一个 link 到 Codesand 的完整代码。
let valorImput = "";
dropDown.onchange = (e) => {
valorImput = e.target.value;
console.log("dropdown onchange console", e.target.value);
};
btn.onclick = (e) => {
const existe = productos.find((x) => x.titulo === valorImput);
existe ? (precio = existe.precio) : console.log("NO hay Nada");
document.getElementById("valorDeSelect").value = precio;
Swal.fire("El precio esta expresado en Dolares!", "USD " + precio, "success");
console.log("valor input", valorImput);
};
变量 valorImput
必须在全局范围内声明(在任何“{}”括号之外)。
有关详细信息,请参阅 documentation。