Creating Objects Dynamically : Objects Object Oriented « Language Basics « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Event
7. Event onMethod
8. Form Control
9. GUI Components
10. HTML
11. Javascript Collections
12. Javascript Objects
13. Language Basics
14. Node Operation
15. Object Oriented
16. Page Components
17. Security
18. Style Layout
19. Table
20. Utilities
21. Window Browser
Microsoft Office Word 2007 Tutorial
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
PHP
Python
SQL Server / T-SQL
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
JavaScript DHTML » Language Basics » Objects Object Oriented 
Creating Objects Dynamically


<html>
<head>
  <title>Student Database</title>
  <script type="text/javascript">
  <!--
    var i = 0;
   
    // Create Array objects
    var empList = new Array();
   
    // Student object constructor
    function Student(FirstName, LastName, HomePhone, Ext,  EmailAddress) {
      this.FirstName = FirstName;
      this.LastName = LastName;
      this.HomePhone = HomePhone;
      this.Ext = Ext;
      this.EmailAddress = EmailAddress;
      this.show = show;
    }
   
    function show() {      
      alert(this.FirstName + ":" +this.LastName + ":" +this.HomePhone + ":" +this.Ext + ":" this.EmailAddress);
    }
   
    function addStudentObject(FirstName, LastName, HomePhone, Ext,EmailAddress) {
      empList[inew Student(FirstName, LastName, HomePhone, Ext,EmailAddress);
    }
   
    function insertRecord() {
      FirstName = document.form1.FirstName.value;
      LastName = document.form1.LastName.value;
      HomePhone = document.form1.HomePhone.value;
      Ext = document.form1.Ext.value;
      EmailAddress = document.form1.EmailAddress.value;
      i++;
      addStudentObject(FirstName, LastName, HomePhone, Ext, EmailAddress);
    }
   
    function showAll() {
      for (var q=1; q<empList.length; q++) {
        empList[q].show();
      }
    }
  //-->
  </script></head>
<body>
  <h1>Dyanamic Object Creator</h1>
  <form name="form1">
    <pre>
      First Name:      
      <input type=text size=20 maxlength=256 name="FirstName">
    </pre>
    <pre>
      Last Name:
      <input type=text size=20 maxlength=256 name="LastName">
    </pre>
    <pre>
      Home Phone:
      <input type=text size=20 maxlength=256 name="HomePhone">
    </pre>
    <pre>
      Ext.:
      <input type=text size=20 maxlength=256 name="Ext">
    </pre>
    <pre>
      Email Address:
      <input type=text size=20 maxlength=256 name="EmailAddress">
   
    </pre>
    <pre>
      <input type="button" name="Add" value="Add" onClick="insertRecord()">
      <input type="button" name="ShowAll" value="Show All"
        onClick="showAll()">
   
    </pre>
  </form>
</body>
</html>

           
       
Related examples in the same category
1. Object utility: create, parse and profile
2. Define Object, use its instance
3. Define and use object
4.  Creating an Object and Using Object Instance Properties and Methods
5.  Object-Oriented Planetary Data Presentation
6. The Book Object Definition
7. Complete Example of Using the employee, client, and project Objects
8. Source Code for the showBook() Example
9. Using the Book Object Constructor
10. Object to array
11. Utility class for JavaScript class definition
w__ww.__ja_va_2s___._c___o___m_ | Contact Us
Copyright 2003 - 08 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.