input点击删除默认value,以及只能输入数字,删除,tab
/*inputhastip类绑定事件*/
$('.inputhastip').css("color", "#999");
$('.inputhastip').bind({
focus:function(){
if(this.value==this.defaultValue)
{
this.value="";
$(this).css("color", "#333");
}
},
blur:function(){
if(this.value=="")
{
this.value = this.defaultValue;
$(this).css("color", "#999");
}
}
});
$('.inputhastip').css("color", "#999");
$('.inputhastip').bind({
focus:function(){
if(this.value==this.defaultValue)
{
this.value="";
$(this).css("color", "#333");
}
},
blur:function(){
if(this.value=="")
{
this.value = this.defaultValue;
$(this).css("color", "#999");
}
}
});
//指定输入数字,删除,tab
$('.number').keydown(function(e){
if((e.which>95&&e.which<106) || (e.which==8) || (e.which==46) || (e.which==9))
{
return true;
}else{
return false;
}
})
if((e.which>95&&e.which<106) || (e.which==8) || (e.which==46) || (e.which==9))
{
return true;
}else{
return false;
}
})
posted on 2014-08-02 11:18 atomgame的记事本 阅读(370) 评论(0) 编辑 收藏 举报