Rumah > Artikel > hujung hadapan web > Penjelasan terperinci tentang penggunaan atribut prototaip dalam pengetahuan JavaScript_Basic
Atribut prototaip boleh menambah sifat dan kaedah pada sebarang objek (Nombor, Boolean, Rentetan dan Tarikh, dsb.).
Nota: Prototaip ialah harta global yang boleh digunakan dalam hampir semua objek.
Tatabahasa
object.prototype.name = value
Contoh:
Berikut ialah contoh yang menunjukkan cara menambah sifat pada objek menggunakan atribut prototaip:
<html> <head> <title>User-defined objects</title> <script type="text/javascript"> function book(title, author){ this.title = title; this.author = author; } </script> </head> <body> <script type="text/javascript"> var myBook = new book("Perl", "Mohtashim"); book.prototype.price = null; myBook.price = 100; document.write("Book title is : " + myBook.title + "<br>"); document.write("Book author is : " + myBook.author + "<br>"); document.write("Book price is : " + myBook.price + "<br>"); </script> </body> </html>
Ini akan menghasilkan keputusan berikut:
Book title is : Perl Book author is : Mohtashim Book price is : 100