如何处理JavaScript中未定义的值?if (oldins == ins) 未定义oldins。我该如何检查? 最佳答案 if ((typeof(oldins) !== "undefined") && (oldins === ins))