如何在html网页中设置文本框为必填?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在html网页中设置文本框为必填?相关的知识,希望对你有一定的参考价值。
我的文本域是这样定义的
<html:textarea property="tokenNote" cols="60" rows="3" />
使用的是struts-html标签库。
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
function a()
var a=document.getElementById("a").value;
if(a=="")
alert("必填项,请重新输入");
return false;
</script>
</head>
<body>
<textarea id="a" cols="60" rows="3" ></textarea>
<input type="submit" property="tokenNote" value="submit" onclick="a()" />
</body>
</html>
我给你上传到一个简单的网页,用的JS,你参考一下吧,追问
因为在程序中tokenNote是一个字段,我想问一下如果这样修改的话对于取值传值是否有影响?
追答可以传值,没问题
参考技术A 用JS 判断就行了,服务器语言也有判断,,有的浏览器禁用JS了,判断就失效了,所以服务器端也要判断一次 参考技术B js判断文本框是否为空 参考技术C 写JS验证啊追问请问怎么写,代码可否告知。
如何在 Sequelize 中设置必填字段?
【中文标题】如何在 Sequelize 中设置必填字段?【英文标题】:How to make a field required in Sequelize? 【发布时间】:2018-01-06 00:29:08 【问题描述】:假设我想在 sequelize 中设置 firstname 字段,在 mongoose 中我可以只说 required: true 在该字段上,但我如何在 Sequelize 中做到这一点?
【问题讨论】:
【参考方案1】:如果您使用的是 Sequelize,则 mongoose 上的 required: true
的等价物就是 allowNull: false
。你会按照这些思路写一些东西:
const YourTable = sequelize.define('your_table',
firstname:
type: Sequelize.STRING,
// This will require the firstname be present
allowNull: false,
// If you want to also have a length restriction, add the next line
len: [2,50], // only allow values with length between 2 and 50
// That is 'Al' will be accepted and so will 'Rigoberto Fernando Luis María'.
// But '' or 'J' won't be good enough
// If you use sequelize transforms, this will remove spaces on both ends
// of the string also
trim: true,
,
// All the other fields (columns)
);
参考资料:
SequelizeJS models definition Sequelize transforms【讨论】:
如何设置,比如“[Fieldname] 是必需的?”必填字段的消息?【参考方案2】:回答 Dmitry 问题:您可以在字段定义下定义自定义验证错误:
foo:
type: Sequelize.STRING,
allowNull: false,
validate:
notNull: msg: "foo is required" ,
,
更多信息here
【讨论】:
以上是关于如何在html网页中设置文本框为必填?的主要内容,如果未能解决你的问题,请参考以下文章