我必须在 tr 中插入一个 td,它有一个使用 javascript 的 ID。有人可以帮助我或指导我正确的方向。对不起,这可能很简单,但我对 javascript 很陌生。
<html>
<head>
<script type="text/javascript">
function insertText ()
{
//function to insert any text on the tr with id "tr1"
}
</script>
</head>
<body onload="javascript:insertText()">
<table>
<tr id="tr1">
</tr>`
</table>
</body>
</html>