1、blur当元素失去焦点时触发。
事件不会冒泡,所有浏览器都支持。
2、focus当元素获得焦点时触发。
事件不会冒泡,所有浏览器都支持。
3、focusin等于focus事件,但它冒泡。
4、focusout是HTML事件blur的通用版本。
实例
//焦点事件:模拟输入框的placeholder功能 varoInput1=document.getElementById("input1"); oInput1.onfocus=function(){ oInput1.value=""; }; oInput1.onblur=function(){ oInput1.value="请输入内容"; }; //oInput1.select();
以上就是js中焦点事件的介绍,希望对大家有所帮助。更多js学习指路:js教程
原文来自:https://www.py.cn© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容