(Summary 4) How to customize properties in HTML5

Source: Internet
Author: User

    • Adding custom properties
    • box1.dataset["name"] = "ZS";
    • In the DOM tree species view, the custom attribute is Data-name
1     <Divclass= "Box1">2 Box13     </Div>4     <Script>5         //to add a custom property: Must start with data-6         varBox1=Document.queryselector (". Box1");7         //How to customize attributes in JS8         //Box1.index = +;9         //Console.log (box1.index);Ten  One         //Custom properties in H5: Date-xxxx A box1.dataset["name"] = "ZS"; - box1.dataset["Nameage"] = "Zs18"; -         //How to get the Console.log (box1.dataset["name"]) -         //if it is data-name-age how to get it?  - Console.log (box1.dataset["Nameage"]) -     </Script>

(Summary 4) How to customize properties in HTML5

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.