如何在 jQuery 中设置 Textarea 的值
答案:使用jQuery val()
方法
您可以简单地使用 val()
方法来使用 jQuery 动态设置文本区域的值。
让我们试试下面的例子来了解它的基本工作原理:
示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery 设置文本区域值</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function(){
var textContent = "The quick brown fox jumps over the lazy dog.";
$("button").click(function(){
$("#myTextarea").val(textContent);
});
});
</script>
</head>
<body>
<textarea id="myTextarea" rows="3" cols="50"></textarea>
<br>
<button type="button">Set Textarea Value</button>
</body>
</html>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: