如何在ie8中把value做出placeholder的效果,在线等急!!!
1个回答
展开全部
新建一个js 文件文件内容$(function(){
// 1,点击输入框,value值消失
// 2,当输入框,失去焦点,判断,如果有值,不显示,如果没有值,恢复原来的值
var color1 = 'black';
var color2 = '#9e9d9d';
$('input,textarea').not('input[type="reset"],input[type="submit"],input[type="image"]').each(function(){
// 初始值
var value = $(this).attr('value');
$(this).val(value);
$(this).css('color',color2)
// 获取焦点
$('input,textarea').focus(function(){
if($(this).val()===value){
$(this).val('').css('color',color1)
}
})
// 失去焦点
$(this).blur(function(){
if($(this).val()===''){
$(this).val(value).css('color',color2)
}
})
})
// 重置按钮
$('input[type="reset"]').click(function(event){
// event.preventDefault()取消默认事件
event.preventDefault()
$('input,textarea').not('input[type="reset"],input[type="submit"],input[type="image"]').each(function(){
var value = $(this).attr('value')
$(this).val(value).css('color',color2)
})
})
}) 然后在头部用link标链接皆可
// 1,点击输入框,value值消失
// 2,当输入框,失去焦点,判断,如果有值,不显示,如果没有值,恢复原来的值
var color1 = 'black';
var color2 = '#9e9d9d';
$('input,textarea').not('input[type="reset"],input[type="submit"],input[type="image"]').each(function(){
// 初始值
var value = $(this).attr('value');
$(this).val(value);
$(this).css('color',color2)
// 获取焦点
$('input,textarea').focus(function(){
if($(this).val()===value){
$(this).val('').css('color',color1)
}
})
// 失去焦点
$(this).blur(function(){
if($(this).val()===''){
$(this).val(value).css('color',color2)
}
})
})
// 重置按钮
$('input[type="reset"]').click(function(event){
// event.preventDefault()取消默认事件
event.preventDefault()
$('input,textarea').not('input[type="reset"],input[type="submit"],input[type="image"]').each(function(){
var value = $(this).attr('value')
$(this).val(value).css('color',color2)
})
})
}) 然后在头部用link标链接皆可
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询