慕用6586167
2016-06-20 09:27
在很多网站上的文本框输入内容时,“在这里输入内容”这几个字会自己消失了,不用自己手动删除,是怎么做到的。求大神
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>文本域</title>
</head>
<body>
<form action="save.php" method="post" >
<label>个人简介:</label>
<textarea style="font-size:20px" cols="50" rows="10" placeholder="在这里输入内容" ></textarea>
<input type="submit" value="确定" name="submit" placeholder="在这里输入内容" />
<input type="reset" value="重置" name="reset" />
</form>
</body>
</html>
对吗。。
设置input的placeholder,例如<input type="text" name="ssk" placeholder="输入关键词..."></input>
placeholder只是占位符,当输入内容的时候就会自动消失,如果没有内容就会显示。
<input id="username" type="text" placeholder="在这里输入内容" >
初识HTML(5)+CSS(3)-升级版
1225293 学习 · 18230 问题
相似问题