The innerHTML of tbody in the IE6-IE9 cannot be assigned to the solution _ javascript tips-js tutorial

Source: Internet
Author: User
This article mainly introduces the IE6-IE9 tbody innerHTML can not assign value to the solution, very practical, need friends can refer to the IE6-IE9 tbody innerHTML can not assign value, reproduce the Code as follows

Js Code

   
  InnerHTML of tbody in IE6-IE9 cannot copy bug   
 
 
Aaa

GETSET

Script var tbody = document. getElementsByTagName ('tbody') [0] function setTbody () {tbody. innerHTML ='Bbb'} Function getTbody () {alert (tbody. innerHTML)} btn1.onclick = function () {getTbody ()} btn2.onclick = function () {setTbody ()} script

Two buttons: the first to get the innerHTML of the tbody and the second to set the innerHTML of the tbody.

When getting, all browsers pop up the tr string, but the IE6-9 is not supported at the time of the setting, and an error is reported,

You can use the feature to determine whether the browser supports tbody innerHTML settings.

var isupportTbodyInnerHTML = function () {var table = document.createElement('table')var tbody = document.createElement('tbody')table.appendChild(tbody)var boo = truetry{tbody.innerHTML = ''} catch(e) {boo = false}return boo}()alert(isupportTbodyInnerHTML)

Click to see if the browser you are browsing this blog supports

Click Me

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.