HTML/CSS/Basic Attributes/vcard name

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

"vcard_name" sets the element vCard value to use with the autocomplete list provided by the browser

   <source lang="html4strict">
   

<html> <body>

   <form name="myForm">
       Customer Name: 
       <input type="text" 
              name="CustomerName" vcard_name="vCard.DisplayName">
       Address: 
       <input type="text" 
              name="CustomerAddress" vcard_name="vCard.Home.StreetAddress">
       City: 
       <input type="text" 
              name="CustomerCity" vcard_name=" vCard.Home.City ">
       State: 
       <input type="text" 
              name="CustomerState" vcard_name=" vCard.Home.State ">
       Zip Code: 
       <input type="text" 
              name="CustomerZipcode" vcard_name=" vCard.Home.Zipcode ">
   </form>

</body> </html>


     </source>