码迷,mamicode.com
首页 > 其他好文 > 详细

页面默认值显示

时间:2014-10-11 20:09:06      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:style   color   io   ar   for   sp   on   cti   ef   

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; }

页面默认值显示

标签:style   color   io   ar   for   sp   on   cti   ef   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!