我需要比较 2 个值。一个值来自输入框,另一个值在数组中。
var caja = $("#txtRespuesta").val();
alert("Comprueba respuesta: " + caja);
$("#puntos").text(puntos);
var obj2String = (arregloDePhp[indiceArregloPhp]).toString();
// if (res2.equals(obj2String.toString())){ //complains that object has no method .equals
if (caja==obj2String){
puntos+=1;
};
console.log ("comparing: "+caja+" y "+obj2String);//actually this shows both words are the same
indiceArregloPhp+=1;
找不到是什么,请指出正确的方向。
提前致谢。