JavaScript 上传表单无反应

在运行这个表单时,本应该在选择value='carte étudiant’时会报错,但尝试多次无反应

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<script type="text/javascript">
		function validation_formulaire(){
		if(document.form['information'].identity.value == ('carte étudiant')){
			alert("Can't use that");
			return false;
		}}


	</script>
	<title>student</title>
</head>
<body>
	<form name="information" method="post" action="" onsubmit="return validation_formulaire()">
		<label for='prénom'>prénom:</label>
		<input type="text" name="prénom" id="prénom">
		<label for='nom'>nom:</label>
		<input type="text" name="nom" id='nom'>
		<label for="papier d'identité">choisir le type de papier d'identité:</label>
		<select id='identity' name='identity'>
			<option value='passport'>passport</option>
			<option value='carte étudiant'>carte étudiant</option>
			<option value='driving license'>driving licence</option>
			
		</select>
		<label for="passport vaccinal">
			Do you have passport vaccinal?
		</label>
		<input type="checkbox" name="check" id="check">
		<button onclick="check()">Yes</button>
		<button onclick="uncheck()" >No</button>
		<input type="submit">


	</form>

</body>
</html>

最后发现 需要将script中的form 改为forms

function validation_formulaire(){
		if(document.forms['information'].identity.value == ('carte étudiant')){
			alert("Can't use that");
			return false;
		}}

错误解决

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值