私はjavascriptでオブジェクト指向の構文を練習しており、いくつかの問題があります。これは私のコードです:私は、ページをロードすると、体のinnerHTMLプロパティはName.protoype( "関数()... this.first + this.middle + this.lastの正確なテキストオブジェクト指向のjavascriptについての混乱
<html>
<head>
<script type="text/javascript">
function Name(first,mid,last) {
this.first = first;
this.middle = mid;
this.last = last;
}
Name.prototype.fullname = function() {
return this.first + " " + this.middle + " " + this.last;
}
Name.prototype.fullnamereversed = function() {
return this.last + " " + this.middle + " " + this.first;
}
var s = new Name("James","Harlow","Smith")
</script>
</head>
<body>
<script type="text/javascript">
document.body.innerHTML = s.fullname;
document.body.innerHTML = s.fullnamereversed;
</script>
</body>
</html>
です... ")。私はここで何をやったのですか?
私の愚かな間違い。ありがとうございました。 – dopatraman