首页 > 代码库 > HTML Dom Event对象onfocus事件
HTML Dom Event对象onfocus事件
语法:
onfocus="SomeJavaScriptCode"
onfocus 事件在对象获得焦点时发生。
支持该事件的 HTML 标签:
<a>, <acronym>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <button>,
<caption>, <cite>, <dd>, <del>, <dfn>, <div>, <dl>, <dt>, <em>, <fieldset>,
<form>, <frame>, <frameset>, <h1> to <h6>, <hr>, <i>, <iframe>, <img>, <input>,
<ins>, <kbd>, <label>, <legend>, <li>, <object>, <ol>, <p>, <pre>, <q>,
<samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <tbody>,
<td>, <textarea>, <tfoot>, <th>, <thead>, <tr>, <tt>, <ul>, <var>
支持该事件的 JavaScript 对象:
button, checkbox, fileUpload, layer, frame, password, radio, reset, select, submit,
text, textarea, window
例:
输入框获得焦点时,改变其背景色:
<span style="font-size:18px;"><html><head><script type="text/javascript">function setStyle(id){ document.getElementById(id).style.background="yellow"}</script></head><body>名称: <input type="text" onfocus="setStyle(this.id)" id="name" /><br />年龄: <input type="text" onfocus="setStyle(this.id)" id="age" /></body></html></span>
HTML Dom Event对象onfocus事件
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。