0
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function person(name, age){
this.name = name;
this.age = age;
}
var ulysse = new person("Ulysse Corbeil", 18);
var taylor = new person("Taylor Swift", 21);
</script>
</head>
<body>
<script type="text/javascript">
document.write(taylor.age);
</script>
</body>
</html>
我是新來的JavaScript,也許這看起來會像一個rooky錯誤,但是當我檢查的代碼,它說我沒有正確的聲明泰勒,任何想法,爲什麼?程序不正確functionning
根本不需要「type」屬性。 – Pointy