首页 > 代码库 > javascript学习笔记(四)
javascript学习笔记(四)
首先,实现demo样式
<html><head><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><title>记住密码提示框</title><style>body,input,p{marginj:0;padding:0;}body{font:12px/1.5 Tahoma;}#outer{width:200px;margin:10px auto;}input{margin-right:5px; vertical-align:middle;}#tips{padding:5px;margin-top:5px;background:#ffefa4;border:1px solid #f90; display:none;}</style></head><body><div id="outer"><label><input type="checkbox">两周内自动登陆</label><div id="tips">为了您的信息安全,请不要再网吧或公用电脑上使用此功能!</div></div></body></html>
然后,用JS实现功能需求
<script>window.onload = function (){ var oTips = document.getElementById("tips"); var oLabel = document.getElementsByTagName("label")[0]; oLabel.onmouseover = function () { oTips.style.display = "block" }; oLabel.onmouseout = function () { oTips.style.display = "none" }}</script>
小结:
onmouseover 事件会在鼠标指针移动到指定的对象上时发生。
参考链接:
CSS vertical-align 属性设置元素的垂直对齐方式。
http://www.w3school.com.cn/cssref/pr_pos_vertical-align.asp
http://www.zhangxinxu.com/wordpress/2010/06/css-vertical-align%E7%9A%84%E6%B7%B1%E5%85%A5%E7%90%86%E8%A7%A3%EF%BC%88%E4%BA%8C%EF%BC%89%E4%B9%8Btext-top%E7%AF%87/
javascript学习笔记(四)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。