文本框中的文字呈灰色,用鼠标点击一下消失,然后再写入其他内容,如何在DW8中解决?
文本框中的文字呈灰色,用鼠标点击一下消失,然后再写入其他内容,如何在DW8中解决?再加入的内容不要一点击就消失了。谢谢,请详细一些好吗?没分了,请好心人帮下忙吧...
文本框中的文字呈灰色,用鼠标点击一下消失,然后再写入其他内容,如何在DW8中解决?再加入的内容不要一点击就消失了。谢谢,请详细一些好吗?没分了,请好心人帮下忙吧
展开
2个回答
展开全部
<!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>
<style type="text/css">
<!--
.input {
color: #cccccc;
}
-->
</style>
<body>
<input name="keyword" type="text" class="input" id="keyword" onfocus="if(this.value=='请输入关键字')this.value=''" value="请输入关键字" maxlength="10" /></body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>文本框提示样式</title>
</head>
<style type="text/css">
<!--
.input {
color: #cccccc;
}
-->
</style>
<body>
<input name="keyword" type="text" class="input" id="keyword" onfocus="if(this.value=='请输入关键字')this.value=''" value="请输入关键字" maxlength="10" /></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 aa()
{
if(frm.tt.value=="")
{
frm.tt.value="提示文字";
}
}
function bb()
{
if(frm.tt.value=="提示文字")
{
frm.tt.value="";
}
}
</script>
</head>
<body>
<form name="frm">
<input type="text" name="tt" value="提示文字" onfocus="bb()" onblur="aa()" style="color:#999999"/>
</form>
</body>
</html>
<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 aa()
{
if(frm.tt.value=="")
{
frm.tt.value="提示文字";
}
}
function bb()
{
if(frm.tt.value=="提示文字")
{
frm.tt.value="";
}
}
</script>
</head>
<body>
<form name="frm">
<input type="text" name="tt" value="提示文字" onfocus="bb()" onblur="aa()" style="color:#999999"/>
</form>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询