欢迎访问服务器技术网-www.fuwuqijishu.com

Textarea required 属性

JavaScript fuwuqijishu 2年前 (2022-09-04) 109次浏览 0个评论 扫描二维码
文章目录[隐藏]

Textarea required 属性

Textarea 对象


实例

检测在提交表单之前文本区域 textarea 是否必须填写内容:

var x = document.getElementById("myTextarea").required;

定义和用法

required 属性用于设置或返回在提交表单之前 textarea 元素是否必须填写内容。


浏览器支持

属性
required Yes 10.0 Yes 不支持 Yes

语法

返回 required 属性:

textareaObject.required

设置 required 属性:

textareaObject.required = true|false


属性值

描述
true|false

指定表单在提交之前 textarea 元素是否必须填写内容。

  • true – 表单在提交之前 textarea 元素必须填写内容。
  • false – 默认。表单在提交之前 textarea 元素不一定需要填写内容。


技术细节

返回值: 布尔值,如果 textarea 元素在表单提交前必须填写内容返回 true,否则返回 false。

更多实例

实例

设置 textarea 元素在表单提交前必须填写内容:

document.getElementById("myTextarea").required = true;


Textarea 对象

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2120.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900