WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何在jQuery中获取textarea的值

主题:JavaScript / jQuery上一页|下一页

答案:使用jQuery val()方法

您可以使用 jQuery val() 方法来获取或设置 <textarea> 元素的值。 请务必删除任何尾随和前导空格,否则可能会导致意外结果。

以下示例将从 textarea 获取值,并在单击按钮时在警报对话框中显示不等于 ""(即非空)。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Get Value from Textarea in jQuery</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            var comment = $.trim($("#comment").val());
            if(comment != ""){
                // Show alert dialog if value is not blank
                alert(comment);
            }
        });
        
    });
</script>
</head>
<body>
    <textarea id="comment" rows="5" cols="50"></textarea>
    <p><button type="button">Get Value</button></p>
    <p><strong>Note:</strong> Type something in the textarea and click the button to see the result.</p>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements