二十二、オブジェクト内のJavaScriptの書き込み機能

、次のように

 

次のように第二に、効果があります

<!DOCTYPE html>
<html>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<body>
<h1>我的第一张网页</h1>

<p id="demo"></p>

<script>

var person = {
    firstName: "Bill",
    lastName: "Gates",
    age: 18,
    eyeColor: "blue",
    fullName: function(){
        return this.firstName + " " + this.lastName;
    }
};
document.getElementById("demo").innerHTML = person.fullName();
 
</script>

</body>
</html>

 

おすすめ

転載: www.cnblogs.com/tianpan2019/p/11314642.html