如何用html代码在网页中实现: 用户:文本框 密码:文本框 登陆 充填_百度...
发布网友
发布时间:2022-04-30 08:00
我来回答
共3个回答
热心网友
时间:2022-04-21 02:44
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<html>
<head><title>登录</title></head>
<body>
<from action="#">
用户名:<input type="text" /><br />
密 码:<input type="password" /><br />
<input type="submit" value="登录" /><input type="reset" value="充填" />
</form>
</body>
</html>
你确定密码是文本框?文本框可是直接看得见输入了什么密码的,我现在给你弄的是密码框
热心网友
时间:2022-04-21 04:02
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
</head>
<body>
<form>
用户名:<input type="text" />
密码:<input type="text" />
<input type="button" value="登录"/>
<input type="reset" value="重填"/>
</form>
</body>
</html>
不过密码框你怎么不让用<input type="password" />这样输入的内容会看不出来输入的是什么追问
这些是什么意思啊?
追答DOCTYPE是document type(文档类型)的简写,用来说明你用的XHTML或者HTML是什么版本。
其中的DTD叫文档类型定义,里面包含了文档的规则,浏览器就根据你定义的DTD来解释你页面的标识,并展现出来。
就是一个声明
你把它们去掉也可以,明白了吗
热心网友
时间:2022-04-21 05:37
登陆 充填