您好,登錄后才能下訂單哦!
這篇文章主要介紹“JavaScript怎么創建對象并為對象添加方法和屬性”,在日常操作中,相信很多人在JavaScript怎么創建對象并為對象添加方法和屬性問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”JavaScript怎么創建對象并為對象添加方法和屬性”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
創建對象,為對象添加方法,屬性,動態的添加和刪除,示例代碼如下:
<html>
<head>
<TITLE>使用對象直接創建對象</TITLE>
<SCRIPT Language = "JavaScript">
{
var circle = {x:0,y:0,radius:2};
document.write("<br>圓心在:", circle.x," ",circle.y,"半徑為:",circle.radius);
document.write("<br><br>函數創建對象<br>");
function student(name,chinese,math,english)
{
this.name=name;
this.chinese = chinese;
this.math = math;
this.english = english;
this.avg2=avg2;
}
//
function avg()
{
return ((this.chinese + this.math + this.english)/3);
}
function avg2()
{
return (((this.chinese + this.math + this.english)/3)+5);
}
}
</SCRIPT>
</head>
<body>
<SCRIPT Language = "JavaScript">
{
var st1 = new student("zzc",88,95,20);
document.write("姓名"+ st1.name + "<br>");
document.write("語文"+ st1.chinese + "<br>");
document.write("數學"+ st1.math + "<br>");
document.write("英語"+ st1.english + "<br>");
st1.avg = avg;
var avgscore = st1.avg();
var avgscores = st1.avg2();
document.write("平均分"+ avgscore + "<br>");
document.write("平均分+5 = "+ avgscores + "<br>");
document.write("Delete object<br>");
document.write("st1對象屬性和方法:<br>");
for(var i in st1)
document.write(st1[i]+ "<br>");
document.write("<br>刪除對象的屬性(english)方法(avg2)<br>");
delete st1.avg2;
delete st1.english;
for(var i in st1)
document.write(st1[i]+ "<br>");
}
</SCRIPT>
</body>
</html>
到此,關于“JavaScript怎么創建對象并為對象添加方法和屬性”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。