首页 > 其他 > 详细

页面默认值显示

时间:2014-10-11 18:43:37      阅读:246      评论:0      收藏:0      [点我收藏+]
function focusInputEle(o) { if (o.value == getAttributeValue(o, ‘defaultVal‘)) { o.value = ‘‘; o.style.color = "#000000"; } } function blurInputEle(o) { if (o.value == ‘‘) { o.value = getAttributeValue(o, ‘defaultVal‘); o.style.color = "#999999"; } } function getAttributeValue(o, key) { if (!o.attributes) return null; var attr = o.attributes; for ( var i = 0; i < attr.length; i++) { if (key.toLowerCase() == attr[i].name.toLowerCase()) return attr[i].value; } return null; }

页面默认值显示

原文:http://www.cnblogs.com/love-you-girl/p/4019545.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!