//占位符点击消失
<input type="text" id="text" value="请输入一个数字">
-----------------------------------
var input_txt = document.getElementById("text");
function clicknone() {
if( input_txt.value == "请输入一个数字" ) {
input_txt.value = "";
}
if( input_txt.value == ""){
input_txt.value = "请输入一个数字";
}
}
//获得焦点
input_txt.onfocus = function(){
clicknone();
}
//失去焦点
input_txt.onblur = function() {
clicknone();
}
元芳怎么了
紫衣仙女
慕少森
相关分类