1. ホーム
  2. javascript

JavaScriptでid付きtdにテキストを挿入する方法

2023-08-14 04:08:22

質問

簡単なことかもしれませんが、私はそれを理解することはできません。私は、JavaScript関数のonloadイベントから来るいくつかのテキストをtdに挿入しようとしています。

<html>
 <head>
  <script type="text/javascript">
   function insertText ()
   {
       //function to insert any text on the td with id "td1"
   }
  </script>
 </head>
 <body onload="javascript:insertText()">
  <table>
   <tr>
    <td id="td1">
    </td>
   </tr>
  </table>
 </body>
</html>

何かお手伝いできることはありますか?

どのように解決するのですか?

<html>

<head>
<script type="text/javascript">
function insertText () {
    document.getElementById('td1').innerHTML = "Some text to enter";
}
</script>
</head>

<body onload="insertText();">
    <table>
        <tr>
            <td id="td1"></td>
        </tr>
    </table>
</body>
</html>