日期:2014-05-16 浏览次数:20387 次
alert(false==0)//结果为true
alert("123"==123)//结果为true
alert(5==new String("5"))//结果为true
alert(new String("5") == new String("5"));//注意结果为false
alert(null == undefined);//true alert(NaN == NaN);//false alert(NaN == 1);//false,只要比较的两者中含NaN,结果即为false
alert("5" === "5")//true alert("5" === 5);//false
var str1 = "abc"; var str2 = "abc"; alert(str1.indexOf(str2)==0&&str2.indexOf(str1)==0)//相等则为true,不等则为false注意此种方法区分大小写
str1.localeCompare(str2)==0//返回0则证明str1与str2相等