Miêu tả

Phương thức Boolean toSource() trong JavaScript trả về một chuỗi biểu diễn code nguồn của đối tượng.

Ghi chú − Phương thức này không tương thích với tất cả trình duyệt.

Cú pháp

Cú pháp của nó như sau:

boolean.toSource()

Trả về giá trị

Trả về một chuỗi biểu diễn code nguồn của đối tượng đó.

Ví dụ

Bạn thử ví dụ sau:

<html>
   <head>
      <title>JavaScript toSource() Method</title>
   </head>
   
   <body>
   
      <script type="text/javascript">
         function book(title, publisher, price)
         {
            this.title = title;
            this.publisher = publisher;
            this.price = price;
         }
         
         var newBook = new book("Perl","Leo Inc",200); 
         document.write(newBook.toSource()); 
      </script>
      
   </body>
</html>

Kết quả

({title:"Perl", publisher:"Leo Inc", price:200})

Các bài học JavaScript khác tại s2sontech:




Bình luận (0)

Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Michael Gough
Learning English Everyday