console.log('hello test');
//alert("yoyo");

//Variables
//var b = '';

//change the element of html

document.getElementById('someText').innnerHTML = 'Hey there';


我从YouTube聪明的程序员那里学习了基本的javascript教程,但是我的javascript似乎无法正常工作,尽管我100%遵循与他的类型完全相同的代码。

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>

 <p id="someText"></p>
    <script src="home.js">
        //alert('test');
    </script>


</body>
</html>

最佳答案

innerHTML中的错字。 document.getElementById('someText').innnerHTML必须为document.getElementById('someText').innerHTML = 'Hey there';

关于javascript - 为什么我的document.getElementById('someText')。innnerHTML不显示但控制台很好,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60923365/

10-09 14:22