我正在尝试通过一些JavaScript代码来修改(例如)textarea函数中的行,但是它不仅仅具有class的ID。
我尝试使用ID document.getElementById("textArea").rows = 2;
来完成此操作,但是此方法似乎不适用于document.getElementByClassName("textArea").rows = 2;
<html>
<body>
<br>
<textarea rows="1" placeholder="Something" tabindex="1" class="textArea" style="height: auto;">asda</textarea>
<p>Click the button</p>
<button type="button" onclick="myFunction()">Click It</button>
<script>
function myFunction() {
document.getElementByClassName("textArea").rows = 2;
}
</script>
</body>
</html>
我希望结果是行更改为2,但未更改。