摘要: function newStr(){ return "hi";}function turn(str){ str.toString = newStr;}var str1 = "hello", str2 = new String("hello2");turn(str1);turn(str2);alert(str1);alert(str2);alert(str1+str2); 阅读全文
posted @ 2013-10-09 18:22 lily white 阅读(157) 评论(0) 推荐(0) 编辑