我可以用JS的类(无id)修改textareas吗?

时间:2019-07-15 11:17:27

标签: javascript html textarea

我正在尝试通过一些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,但未更改。

0 个答案:

没有答案