这里如果
document.write(eval("(2 == 2)"));
它打印正确
和
document.write(eval("(2 == 2)&(5<10)"));
它打印1
为什么它不总是返回 true 或 false。如果字符串中的条件增加,它会给出 0 或 1。获得相同类型结果的方法是什么。
这里如果
document.write(eval("(2 == 2)"));
它打印正确
和
document.write(eval("(2 == 2)&(5<10)"));
它打印1
为什么它不总是返回 true 或 false。如果字符串中的条件增加,它会给出 0 或 1。获得相同类型结果的方法是什么。