<div class="codetitle"> <span><a style="CURSOR: pointer" data="16721" class="copybut" id="copybut16721" onclick="doCopy('code16721')"><u>コードをコピー</u></a></span> コードは次のとおりです。</div> <div class="codebody" id="code16721"> <br><script type="text/javascript"> <br> // apply メソッドを使用してオブジェクトの継承を実装します。 <br><br>function Parent(username) { <br>this.username = username; <br>this.sayHello = function() { <br>alert( this.username); <br>} <br>} <br><br>function Child(username, password) { <br>Parent.apply(this, new Array(username));以下<br>/ /Parent.apply(this, [ユーザー名]); <br><br>this.password = パスワード; <br><br>this.sayWorld = function() { <br>alert(this. <br>} <br>} <br>var 親 = new Parent("zhangsan"); <br>var child("lisi", "123"); .sayHello(); <br>child.sayHello(); <br><br><br><br> </div>