JavaScript Reference/Javascript Objects/userProfile

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

"userProfile" Example

   <source lang="javascript">
   

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

   navigator.userProfile.addReadRequest("vCard.DisplayName");
   navigator.userProfile.doReadRequest(1, "Desk Reference"); 
   alert(navigator.userProfile.getAttribute("vcard.DisplayName"));
   navigator.userProfile.clearRequest(); 

} </script> </head> <body> <button onclick="function1();">Click here</button> </body> </html>


     </source>
   
  


"userProfile" is applied to

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | Applied_To |navigator clientInformation | +----------------+--------------------------------------------------------------+

     </source>
   
  


"userProfile" JavaScript Methods

   <source lang="javascript">

+----------------+--------------------------------------------------------------+ | JavaScript |addReadRequest clearRequest | | Methods |doReadRequest getAttribute | | |setAttribute | +----------------+--------------------------------------------------------------+

     </source>
   
  


"userProfile" Syntax and Note

   <source lang="javascript">

Note: Information in the user"s profile.

Syntax:

navigator.userProfile.memberName


     </source>