JavaScript Reference/Javascript Properties/profile — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:22, 26 мая 2010

"profile" Example

   <source lang="javascript">
   

<html> <head id="myHeader"> <script language="JavaScript"> function function1() {

  alert("The following profile has been added:\n"http://www.wbex.ru"");
  document.all.myHeader.profile = "http://www.wbex.ru"; 

} </script> </head> <body> <input type="button" value="Add profile" onClick="function1();"> </body> </html>


     </source>
   
  


"profile" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |<head> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"profile" Syntax and Note

   <source lang="javascript">

Note: Read and write property. Specifies the location (the Uniform Resource Identifier, or URI) of a <meta> data profile.

Syntax:

document.getElementById("headID").profile = value document.all.headID.profile = value // IE only


     </source>