Enable all browsers to recognize HTML5 tag-style widgets

Source: Internet
Author: User

Now HTML5 more and more attention, but currently support HTML5 browser is not mainstream, especially domestic users nearly 50% still use IE6, because support HTML5 IE9 does not support the installation of XP system, so the future for a long time, HTML5 developers will have to consider backwards compatibility issues. There are many ways to HTML5 tag or CSS selector compatibility, in which a self-generated tag element is one.

The basic principle is that the following code works in IE8, and the style does not work at all.

<style>mxria{color:red;} </style>
<body>
<mxria>Hello!</mxria>
</body>

In order to be a browser identification <mxria></mxria> tags and display the corresponding style of effect, we can add a section of JS, see the effect is different

<style> mxria{color:red;} </style>
<script>document.createelement ("Mxria") </script>
<body>
<mxria>Hello!mxria.com</mxria>
</body>

Now everyone understands the mystery of it! Yes, that is document.createelement, HTML5 Shiv is such a JS plugin, all HTML5 tags are regenerated, you need to load the plug-in, then the HTML5 program can be recognized by all browsers.

: Http://html5shim.googlecode.com/svn/trunk/html5.js

Enable all browsers to recognize HTML5 tag-style widgets

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.