web:输入框灰字

来源:互联网 发布:php网页联机游戏源码 编辑:程序博客网 时间:2024/06/03 08:40

html数据+css样式+javascript函数:(潭州心蓝)


<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
.g{
color:gray
}
.b{
color:black
}
</style>


<title>Title</title>
<script type="text/javascript">

function Focus(ths) {
//获得input框
old_value=ths.value
if(old_value.trim()=='请输入内容' || old_value.trim() == ''){
ths.value = ''
ths.className='b'}
}

function Blur(ths) {
old_value= ths.value
if(old_value.trim() == ''){
ths.value = "请输入内容"
ths.className='g'}
}
</script>
</head>

<body>
<input type="text" class='g' value="请输入内容" onblur="Blur(this)" onfocus="Focus(this)">
<input type="text" placeholder="请输入内容">
</body>
</html>