`<html>
<script> var obj={ a:function(){ alert("first a") obj.aftera(); }, aftera:function(){ alert("aftera"); } } obj.aftera=function(){ alert("repeat aftera"); }; obj.a(); </script>
</html>`
本文共 240 字,大约阅读时间需要 1 分钟。
`<html>
<script> var obj={ a:function(){ alert("first a") obj.aftera(); }, aftera:function(){ alert("aftera"); } } obj.aftera=function(){ alert("repeat aftera"); }; obj.a(); </script>
</html>`
转载于:https://my.oschina.net/u/554046/blog/754756