HTML5----placeholder属性

placeholder属性能够让你在文本框里显示提示信息,一旦你在文本框里输入了什么信息,提示信息就会隐藏。

<input type="text" name="first_name" class="first_name" placeholder="输入姓名/手机号"/>


<style type="text/css">
.first_name{ height:24px; line-height:24px; border:1px solid #e2e2e6; color:#666; padding:2px 10px;}

.first_name::-webkit-input-placeholder { color:#e2e2e6; }
.first_name::-moz-placeholder { color:#e2e2e6; } /* firefox 19+ */
.first_name:-ms-input-placeholder { color:#e2e2e6; } /* ie */
.first_name:-moz-placeholder { color:#e2e2e6; }
</style>

如果用户的浏览器不支持 placeholder 特征,你需要借助MooTools, Dojo, 或其它JavaScript工具来实现它

<script type="text/javascript">
/*测试浏览器是否支持此属性,给出提示   如:IE6,8肯定是不支持的*/
function hasPlaceholderSupport() {
	var input = document.createElement('input');
	return ('placeholder' in input);
}

/* mootools ftw! */
var firstNameBox = $('first_name'),
	message = firstNameBox.get('placeholder');
firstNameBox.addEvents({
	focus: function() {
		if(firstNameBox.value == message) { searchBox.value = ''; }
	},
	blur: function() {
		if(firstNameBox.value == '') { searchBox.value = message; }
	}
});
</script>


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值