举报投诉联系我们 手机版 热门标签 编程学
您的位置:编程学 > HTML事件属性onblur

HTML事件属性onblur

2023-04-18 12:18 HTML参考手册

 HTML事件属性onblur

HTML事件属性onblur


触发 onblur 属性当元素失去焦点。

HTML5中的新功能

没有。

句法

<element onblur="script">

支持的标签

所有HTML元素,EXCEPT:

<base>, 
<bdo>, 
<br>, 
<head>, 
<html>, 
<iframe>, 
<meta>, 
<param>, 
<script>, 
<style>, 
<title>


浏览器兼容性

onblur Yes Yes Yes Yes Yes

例子

<!DOCTYPE html>
<html>
<body>

Enter your first name: <input type="text" name="fname" id="fname" onblur="myFunction()">
Enter your last name: <input type="text" name="lname" id="lname" onblur="myFunction()">

<script>
function myFunction() {
    console.log("lost focus");
}
</script>

</body>
</html>

Click to view the demo



实施例2

下面的代码显示了如何听输入密码的Focus Lost事件。

<html>
<head>
<script type="text/javascript">
  function checkRequired() {
    document.write("value is required in field");
  }
</script>
</head>
<body>
  <form name="someForm">
    <input type="text" name="text1" /><br /> 
    <input type="password" name="text2" onblur="checkRequired();"/><br /> 
    <input type="hidden" name="text3" value="hidden value" />
    <textarea name="text4" cols=50 rows=10>The text area</textarea>
    <input type="submit" value="Submit" />
  </form>
</body>
</html>

Click to view the demo

阅读全文
以上是编程学为你收集整理的 HTML事件属性onblur全部内容。
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。
相关文章
© 2024 编程学 bianchengxue.com 版权所有 联系我们
桂ICP备19012293号-7 返回底部