我试图将所有表头文本转换为大写但不成功.
<table>
<tr>
<th>product name</th>
<th>product id</th>
....
Run Code Online (Sandbox Code Playgroud)
我的脚本如下:
<script>
var x = document.getElementByTagName('th').innerHTML;
document.write(x.toUpperCase());
</script>
Run Code Online (Sandbox Code Playgroud)
请帮助....我正在学习JS,并且对这个简单的事情几乎感到沮丧.