零基础学习HTML(15)——button标签(下)


注:学习笔记基于小甲鱼学习视频,官方论坛: https://fishc.com.cn/forum.php

官方资料

鱼C课程案例库:https://ilovefishc.com/html5/
html5速查手册:https://man.ilovefishc.com/html5/
css速查手册:https://man.ilovefishc.com/css3/

学习正文

浏览器通常可以自动保存一些用户数据,例如姓名、邮箱,避免用户频繁输入:
在这里插入图片描述
但我们可以通过在form标签中设置autocomplete属性来进行关闭:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<!-- 拒绝浏览器自动填充表单 -->
	<form action="welcome.php" method="post" autocomplete="off">
		名字:<input type="text" name="name"><br><br>
		邮箱:<input type="text" name="email"><br><br>
		<button type="submit">提交</button>
	</form>
</body>
</html>

在这里插入图片描述
同时可以在input标签中设置autocomplete属性,避免所有input标签统一操作:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" autocomplete="on"><br><br>
		名字:<input type="text" name="name"><br><br>
		<button type="submit">提交</button>
	</form>
</body>
</html>

在这里插入图片描述
可以通过 form 标签中的 target 属性实现跳转新页面:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form target="_blank" action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" autocomplete="on"><br><br>
		名字:<input type="text" name="name"><br><br>
		<button type="submit">提交</button>
	</form>
</body>
</html>

在这里插入图片描述
可以通过 form 标签的 value 属性实现默认值:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form target="_blank" action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" value="" autocomplete="on"><br><br>
		名字:<input type="text" name="name"><br><br>
		<button type="submit">提交</button>
	</form>
</body>
</html>

在这里插入图片描述
可以通过 form 标签的 autofocus 属性实现光标自动移动到对应的 input :

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form target="_blank" action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" value="" autocomplete="on"><br><br>
		名字:<input type="text" name="name" autofocus><br><br>
		<button type="submit">提交</button>
	</form>
</body>
</html>

在这里插入图片描述
可以在 button 标签中使用 disabled 属性禁用按钮,同样,在 input 标签中也可以禁用输入框:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form target="_blank" action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" value="" disabled><br><br>
		名字:<input type="text" name="name" autofocus><br><br>
		<button type="submit" disabled>提交</button>
	</form>
</body>
</html>

在这里插入图片描述
可以在 input 标签中使用 readonly 来实现禁止修改:

<!DOCTYPE html>
<html>
<head>
    <title>第十六节课</title>
    <meta charset="utf-8">
	<title>调查问卷</title>
</head>
<body>
	<h1>富人妇科医院调查问卷</h1>
	<form target="_blank" action="welcome.php" method="post" autocomplete="off">
		性别:<input type="text" name="sex" value="" readonly><br><br>
		名字:<input type="text" name="name" autofocus><br><br>
		<button type="submit" disabled>提交</button>
	</form>
</body>
</html>

在这里插入图片描述
disabled 和 readonly 的主要区别:
使用 readonly 属性时,审查元素中, Network 中提交的表单有 sex 数据:
在这里插入图片描述
使用 disabled 属性时,审查元素中, Network 中提交的表单并没有 sex 数据:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值