onload = function(){
/* 聚焦时隐藏placeholder,失焦时显示 */
var Inputs = document.getElementsByTagName("input"),Textareas = document.getElementsByTagName("textarea");
for ( var i in Inputs ) {
Inputs[i].onfocus = function(){
this.placeholder_str = this.placeholder ? this.placeholder : '';
this.placeholder = '';
};
Inputs[i].onblur = function(){
this.placeholder = this.placeholder_str ? this.placeholder_str : '';
}
}
for ( var i in Textareas ) {
Textareas[i].onfocus = function(){
this.placeholder_str = this.placeholder ? this.placeholder : '';
this.placeholder = '';
};
Textareas[i].onblur = function(){
this.placeholder = this.placeholder_str ? this.placeholder_str : '';
}
}
};依然c
慕的地6079101
hhhzihao2
疯子520520
相关分类