您好,登錄后才能下訂單哦!
本文小編主要給大家分享的是JavaScript中屬性的使用方法,很多人都不太了解,今天小編為了讓大家更加了解JavaScript,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。
方法是分配給對象屬性的函數,當在對象的屬性中定義函數時,它被稱為該對象的方法而不被稱為函數。
屬性是預先設置的特定信息(值),其中添加了名稱(屬性名稱)。在其屬性中,該函數被特別稱為“方法”。
我們來看具體的示例
在下面的程序中,我們基于交通燈blue,yellow,red創建一個對象,并將其放在一個名為traffic_light的變量中。
<!DOCTYPE html> <html> <head> <meta charset = "utf-8"> <title>JavaScript</title> </head> <body> <script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop" } </script> </body> </html>
我們在這里添加了一個名為current的屬性。在current中包含交通信號燈的顏色。
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " " } </script>
改變交通燈顏色的函數定義為change_light。然后,通過調用名為change_light的方法(函數)來更改此current的值。
我們首先定義函數change_light
繼續在上面的程序中使用function,讓我們暫時定義函數為change_light。
讓我們考慮下一個信號調用change_light以確定要調用的下一個屬性的行為,具體取決于當時當前的內容。
使用switch語句將change_light設置為四種模式。
如果current中包含的屬性為blue,則下一個屬性將更改為yellow。
如果current中包含的屬性為yellow,下一個屬性將更改為red。
如果current中包含的屬性為red,下一個屬性將更改為blue。
默認是blue。
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " " } function change_light(){ switch(traffic_light.current){ case traffic_light.blue: traffic_light.current = traffic_light.yellow; break; case traffic_light.yellow: traffic_light.current = traffic_light.red; break; case traffic_light.red: traffic_light.current = traffic_light.blue; break; default: traffic_light.current = traffic_light.blue; break } } </script>
接下來,通過在console.log中調用current來查看結果
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " " } function change_light(){ switch(traffic_light.current){ case traffic_light.blue: traffic_light.current = traffic_light.yellow; break; case traffic_light.yellow: traffic_light.current = traffic_light.red; break; case traffic_light.red: traffic_light.current = traffic_light.blue; break; default: traffic_light.current = traffic_light.blue; break } } change_light(); console.log(traffic_light.current); </script>
因為默認的屬性設置為blue,所以輸出blue的值為go。
使用console.log重復三次調用......
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " " } function change_light(){ switch(traffic_light.current){ case traffic_light.blue: traffic_light.current = traffic_light.yellow; break; case traffic_light.yellow: traffic_light.current = traffic_light.red; break; case traffic_light.red: traffic_light.current = traffic_light.blue; break; default: traffic_light.current = traffic_light.blue; break } } change_light(); console.log(traffic_light.current); change_light(); console.log(traffic_light.current); change_light(); console.log(traffic_light.current); change_light(); console.log(traffic_light.current); </script>
current的變化從blue->yellow->red->blue
值的輸出為go->slow down->stop->go
最后就讓我們來看看讓change_light作為traffic_light的方法的使用
要做的是在current:“”之后設置屬性名稱change_light,并使用以下函數對其進行分隔(比如用“:”分隔它們)。(此時,連續的函數名稱change_light是重復的,所以可以刪除它)
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " ", change_light:function(){ switch(traffic_light.current){ case traffic_light.blue: traffic_light.current = traffic_light.yellow; break; case traffic_light.yellow: traffic_light.current = traffic_light.red; break; case traffic_light.red: traffic_light.current = traffic_light.blue; break; default: traffic_light.current = traffic_light.blue; break } } } </script>
現在,teaffic_light對象將有一個名為change_light的方法。
我們以同樣的方式在consoe.log中調用它。這次重復執行四次。
在調用對象中的每個屬性時,可以通過將“.”放入變量名稱后跟屬性名稱來調用屬性值。因此,當你想要在變量traffic_light中包含的對象中調用方法(屬性)時,它變為如下所示。
<script> var traffic_light = { blue: "go", yellow: "slow down", red: "stop", current: " ", change_light:function() { switch(traffic_light.current){ case traffic_light.blue: traffic_light.current = traffic_light.yellow; break; case traffic_light.yellow: traffic_light.current = traffic_light.red; break; case traffic_light.red: traffic_light.current = traffic_light.blue; break; default: traffic_light.current = traffic_light.blue; break } } } traffic_light.change_light(); console.log(traffic_light.current); traffic_light.change_light(); console.log(traffic_light.current); traffic_light.change_light(); console.log(traffic_light.current); traffic_light.change_light(); console.log(traffic_light.current); </script>
運行結果如下:
結果沒有改變,因為函數change_light只是traffic_light的對象的方法。
關于JavaScript中屬性的使用方法就分享到這里了,當然并不止以上和大家分析的辦法,不過小編可以保證其準確性是絕對沒問題的。希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。