摘要: 字符串操作的真相: var a = "s"; a.toLocaleUpperCase(); alert(a); //s 调用 转换大写函数, 结果 a的值并没有发生变化. var a = "s"; var b = a; b = b.toLocaleUpperCase(); alert("a="+... 阅读全文
posted @ 2012-03-26 15:49 高捍得 阅读(546) 评论(0) 推荐(0) 编辑