onfocusin 事件在 JavaScript 中有什么用?
当一个元素获得焦点时,onfocusin 事件会触发。你可以尝试运行以下代码来了解如何用 JavaScript 实现onfocusin 事件 -
例子
<!DOCTYPE html>
<html>
<body>
<p>Write below:</p>
<input type="text" onfocusin="newFunc(this)">
<script>
function newFunc(x) {
x.style.background = "blue";
}
</script>
</body>
</html>
广告
数据结构
网络
RDBMS
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
JavaScript
PHP