Closed. This question is off-topic。它当前不接受答案。
                            
                        
                    
                
            
                    
                
                        
                            
                        
                    
                        
                            想改善这个问题吗? Update the question,所以它是on-topic,用于堆栈溢出。
                        
                        4年前关闭。
                    
                
        

我真的不知道自己在做什么错,但是我的站点不会更新标题的.innerHtml。浏览器控制台中没有错误,console.log()返回正确的字符串(“ hhh”)。
id = test和teet的两个元素都不会更新其html

<html>
    <head>
        <title>
            test title
        </title>
    </head>
    <body>
        <h1 id="teet">TEST HEADING</h1>
        Search :
        <input id="input">
        <button onclick="load()" id="submit" type="button"> search </button>
        <br>
        <h1 id="test">  Test</h1>
        <script>
            function load() {
                var test = document.getElementById("test").innerHtml = "hhh";
                console.log(test);
            }
        </script>
    </body>
</html>

最佳答案

它是用大写字母表示的innerHTML

10-04 11:57