Home Web Front-end JS Tutorial Javascript solution to unknown runtime error when setting innerHTML under IE_javascript tips

Javascript solution to unknown runtime error when setting innerHTML under IE_javascript tips

May 16, 2016 pm 06:11 PM
runtime error

Copy code The code is as follows:

<script> <br>document.getElementById("trone") .innerHTML = "<td>haha</td>"; <br></script>



In IE, "unknown runtime error (unknown runtime error)" sometimes occurs, but not in Firefox.

This is mainly because when IE writes innerHTML, it will check whether the element has the requirements to be used as an html object container in these contents. For example, if you add html containing
  • to a p Code, this is going to go wrong. So if you find these errors appearing, try to do two things:
    1. Check whether the html code you try to add to innerHTML contains broken html tags, such as no
      surrounded by < li>
    • .
      2. Change your container to a more "inclusive" tag, such as ,

      Special attention should be paid to the fact that adding the correctly formatted tag inside the , , tags may cause errors, so you should avoid using these tags as containers. You can use
      So, if it is
      use document.getElementById("trone").innerHTML="new"; there will be no problem.
      As a solution, you can use javascript to dynamically create tags such as
      instead of changing them directly using innerHTML.
      Statement of this Website
      The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

      Hot AI Tools

      Undresser.AI Undress

      Undresser.AI Undress

      AI-powered app for creating realistic nude photos

      AI Clothes Remover

      AI Clothes Remover

      Online AI tool for removing clothes from photos.

      Undress AI Tool

      Undress AI Tool

      Undress images for free

      Clothoff.io

      Clothoff.io

      AI clothes remover

      AI Hentai Generator

      AI Hentai Generator

      Generate AI Hentai for free.

      Hot Article

      Repo: How To Revive Teammates
      1 months ago By 尊渡假赌尊渡假赌尊渡假赌
      R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
      2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
      Hello Kitty Island Adventure: How To Get Giant Seeds
      1 months ago By 尊渡假赌尊渡假赌尊渡假赌

      Hot Tools

      Notepad++7.3.1

      Notepad++7.3.1

      Easy-to-use and free code editor

      SublimeText3 Chinese version

      SublimeText3 Chinese version

      Chinese version, very easy to use

      Zend Studio 13.0.1

      Zend Studio 13.0.1

      Powerful PHP integrated development environment

      Dreamweaver CS6

      Dreamweaver CS6

      Visual web development tools

      SublimeText3 Mac version

      SublimeText3 Mac version

      God-level code editing software (SublimeText3)

      How to solve C++ runtime error: 'invalid memory access'? How to solve C++ runtime error: 'invalid memory access'? Aug 27, 2023 am 10:15 AM

      How to solve C++ runtime error: 'invalidmemoryaccess'? In C++ programming, we often encounter various errors when we run the program. One of the common errors is 'invalidmemoryaccess', which is invalid memory access. This error usually occurs during pointer operations. When we access an invalid memory address, the program will crash and report this error. This article will introduce how to solve this C++ runtime error and give some code

      How to solve C++ runtime error: 'invalid argument'? How to solve C++ runtime error: 'invalid argument'? Aug 27, 2023 pm 01:54 PM

      How to solve C++ runtime error: 'invalidargument'? When writing programs in C++, we often encounter various errors. One of the common errors is the runtime error: 'invalidargument'. This error usually means that one of the parameters we passed to the function or method did not meet expectations, causing the program to fail to perform the correct operation. So, when we encounter this error, how should we solve it? Below we will illustrate with a code example. First, let me

      How to solve C++ runtime error: 'stack overflow'? How to solve C++ runtime error: 'stack overflow'? Aug 25, 2023 pm 10:00 PM

      How to solve the C++ runtime error: 'stackoverflow' In a C++ program, when the recursion level is too deep or the memory used by the program exceeds the stack capacity, a runtime error "stackoverflow" will occur. When this error occurs, the program crashes, and it is difficult to identify the specific cause. This article will introduce some ways to solve 'stackoverflow' errors and provide some code examples. The main cause of the runtime error "stackoverflow" is that within the stack

      How to solve C++ runtime error: 'invalid type conversion'? How to solve C++ runtime error: 'invalid type conversion'? Aug 27, 2023 pm 03:33 PM

      How to solve C++ runtime error: 'invalidtypeconversion'? During the C++ programming process, we often encounter various compile-time and run-time errors. One of the common runtime errors is the 'invalidtypeconversion' error. This error is triggered when we convert one data type to another incompatible data type. This article will introduce some common causes of this error and how to solve it.

      How to solve C++ runtime error: 'divide by zero exception'? How to solve C++ runtime error: 'divide by zero exception'? Aug 25, 2023 pm 06:15 PM

      How to solve C++ runtime error: 'dividebyzeroexception'? In C++ programming, when we try to divide a number by zero, a "dividebyzeroexception" runtime error is thrown. This kind of error causes the program to crash and causes us a lot of trouble. But, luckily, there are some things we can do to fix this problem. In this article, we will explore how to handle this exception and give some code examples to help you

      How to solve C++ runtime error: 'divide by zero'? How to solve C++ runtime error: 'divide by zero'? Aug 27, 2023 am 11:46 AM

      How to solve C++ runtime error: 'dividebyzero'? In C++ programming, the runtime error 'dividebyzero' occurs when we try to divide a number by zero. This is because mathematically it is not allowed to divide a number by zero. Therefore, it is very common to get this error in the program, but there are some steps we can take to solve it. The key to solving this problem is to avoid dividing a number by zero, which we can do with the help of conditional statements, exception handling, and other techniques. under

      How to solve C++ runtime error: 'file read/write error'? How to solve C++ runtime error: 'file read/write error'? Aug 26, 2023 am 08:58 AM

      How to solve C++ runtime error: 'fileread/writeerror'? In the process of C++ programming, we often encounter file read and write errors. One of the most common errors is 'fileread/writeerror'. This kind of error usually leads to the interruption of program operation and brings some trouble to developers. This article will explain the causes of this error and provide some solutions. First, we need to understand 'fileread/writer'

      How to solve C++ runtime error: 'division by zero'? How to solve C++ runtime error: 'division by zero'? Aug 26, 2023 pm 11:37 PM

      How to solve C++ runtime error: 'divisionbyzero'? Introduction: During C++ programming, we may encounter some runtime errors, such as "divisionbyzero" (division by zero). This is a common mistake, but one that's relatively easy to fix. This article will show you how to identify and resolve this type of error. Analysis of the cause of the error: In C++, when we divide a number by zero, a "divisionbyzero" error will occur.

      See all articles