引用类型.html 259 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <html> <head> </head> <body> <script> function setName(obj){ obj.name = 'a'; obj = new Object(); obj.name = 'b'; return obj; } var p = new Object(); var p2 = setName(p); alert(p.name); // a alert(p2.name); // b </script> </div> </body> </html>