JSP text鼠标点击内容清空
2个回答
展开全部
那是用JavaScript:
<!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>
<script type="text/javascript">
function clearText(obj) {
if(!obj) return;
if(!obj.value) return;
obj.value = "";
}
</script>
</head>
<body>
<h1>请输入用户名</h1>
<hr />
<form action="" method="get">
用户名:<input name="username" type="text" onfocus="clearText(this)" />
</form>
</body>
</html>
<!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>
<script type="text/javascript">
function clearText(obj) {
if(!obj) return;
if(!obj.value) return;
obj.value = "";
}
</script>
</head>
<body>
<h1>请输入用户名</h1>
<hr />
<form action="" method="get">
用户名:<input name="username" type="text" onfocus="clearText(this)" />
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询