Document Methods
you can use the methods of the document object to work on a Web page. Here are the most common document methods :
- write() - write a string to the Web Page
- open() - open a new document
- close() - closes the document
Document Example
- Keep the "userdefined.html" file open
- Put the cursor after the String example and enter :
document.write(myNum) document.write(theYear) document.write(printString) document.write(numChars) </SCRIPT>
- Save the changes and Refres the page
Formatting What is Written
You will notice that the result of all four variable are printed on one line and without spaces between the results. You can avoid this by including some formatting in your "document.write" statement.
Document Formatting Example
- Open "write.html" and View the source
- Put cursor after "<!- enter function -->" and enter :
<SCRIPT language="JavaScript"> function newPage(){ var userName=prompt("Please enter your name :","") document.write("<H1>Welcome" + userName + "</H1><BR>") document.write("<H2>to your new home page.</H2>") } </SCRIPT>
- Put the cursor after "<!- enter link here -->" and enter :
<A HREF="JavaScript:newPage()">Create-a-Page!</A>
- Save the changes and Refresh the Page
Document Properties
Use the roperties of the document object to set the colors of the page, the title and display the date document
was last modified. JavaScript has about 150 defined color wors you can use or you can provide the hexadecimal RGB codes. HEre are the most common document properties :
- bgColor
- fgColor
- linkColor
- vlinkColor
- title
- lastModified
Document Example
- Keep the "write.html" file open
- Put the cursor after the last "document.write" and enter :
document.bgColor="red"
- Save the changes and Refresh the page
Window Object
The window object represents the browser window. You can use it to open a Web page in a new window and to set the attributes for window. There are only two main window properties. The are :
- status - set the status bar message
- self - stores the name of the current window
Window Methods
The window methods are mainly for opening and closing new windows. The following at=re the main window methods. They are :
- alert() - to display a message box
- confirm() - to display a confirmation box
- prompt() - to display a prompt box
- open() - to open a new window
- close() - to close a window
Window Example
- Open the "window.html" file and View the Source
- Put the cursor after "<!- Enter the funtion here -->" and enter :
<SCRIPT language="JavaScript"> function openWin(){ window.open("windowtoo.html") } </SCRIPT>
- Put the cursor after "<!- Add link here -->" and enter :
<A HREF="JavaScript:openWin()">New Window!</A>
- Save the changes and Refresh the page
Window Attributes
If the default new window does not suit your needs, you can specify different features of the window when you open it. The complete syntax of the "wndow.open" is as follow :
window.open(URL,windowName,featureList)
By default, if you don't specify any features, the a window will have all of them. If you specify anny one feature, then the window will have only those you set equal to 1. The following are the window attributes :
- toolbar
- menubar
- scrollbars
- resizeable
- status
- location
- directories
Window Attributes Example
- With the "window.html" file open, View the Source
- Put the cursor on the line "window.open" and edit it yo :
window.open("windowtoo.html","newWindow","height=200,,width=200,")
- Save the changes and Refresh the page
SEE VIDEO
0 komentar:
Post a Comment