Heim > Artikel > Web-Frontend > Wie füge ich Objekten in JavaScript Eigenschaften und Methoden hinzu?
Um Eigenschaften und Methoden zu Objekten in JavaScript hinzuzufügen, verwenden Sie das Attribut prototype.
Sie können versuchen, den folgenden Code auszuführen, um zu sehen, wie der Prototyp verwendet wird -
<html> <head> <title>JavaScript prototype property</title> <script> function book(title, author) { this.title = title; this.author = author; } </script> </head> <body> <script> var myBook = new book("Amit", "Java"); book.prototype.price = null; myBook.price = 500; 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>
Das obige ist der detaillierte Inhalt vonWie füge ich Objekten in JavaScript Eigenschaften und Methoden hinzu?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!