1 Star 0 Fork 1

ifo/hradmin90

forked from xpzll/hradmin90 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
演示e.relatedTarget.html 1020 Bytes
一键复制 编辑 原始数据 按行查看 历史
xpzll 提交于 2022-10-11 23:26 . 对话框校验
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.box {
width: 100px;
height: 100px;
background-color: #f00;
}
</style>
</head>
<body>
<input type="text" id="txt" class="txt aa bb cc">
<div id="div">
<button id="btn1">我是按钮</button>
</div>
<input type="checkbox"></div>
<script>
// 给输入框添加失去焦点事件
document.querySelector('#txt').onblur = function (e) {
console.log('失去焦点了', e.relatedTarget, this.classList.contains('dd'))
}
document.querySelector('#btn1').onclick = function () {
alert ('按钮被点')
}
document.querySelector('#div').onclick = function () {
alert ('div被点')
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yy9900/hradmin90.git
git@gitee.com:yy9900/hradmin90.git
yy9900
hradmin90
hradmin90
master

搜索帮助