我有这个代码,但我不能得到输入到helpCallback()的值,所有我得到的是未定义的。我必须用闭包来做。
function tablaR(num){
var seccion=document.getElementById("tabla");
seccion.innerHTML="";
seccion.style.display='block';
for (var i = 0; i < 11; i++) {
var prod=parseInt(num*i);
var t=document.createTextNode(num+" x "+i+"= ");
var inp=document.createElement('INPUT');
inp.setAttribute('type', 'number');
inp.setAttribute('id', 'resul');
inp.addEventListener("change", helpCallback(num, this.value));
var para=document.createElement("p");
para.appendChild(t);
para.appendChild(inp);
seccion.appendChild(para);
}
}
function helpCallback(prod, resp){
return function(){
resp=parseInt(inp.value);
if(resp!=prod){
this.style.color = "red";
}
else{
this.style.color = "green";
}
}
}
this
不是执行helpCallback
函数的元素,但您可以直接获取返回函数中的值
inp.addEventListener("change", helpCallback(num));
function helpCallback(prod){
return function(){
var resp = parseInt(this.value, 10);
if(resp!=prod){
this.style.color = "red";
} else{
this.style.color = "green";
}
}
}