js:事件监听

news2024/12/12 2:26:08

事件监听

事件监听:让程序检测是否有事件产生,一旦有事件触发,就调用一个函数做出响应,也称为绑定事件或注册事件

事件:编程系统内发生的动作或发生的事情

比如用户单击一个按钮下拉菜单

添加事件监听

事件监听三要素:

事件源:哪个dom元素被事件触发了,要获取dom元素

事件类型:用什么方式触发的?例如鼠标单击click、鼠标经过mouseover等

事件调用的函数:事件处理程序,要做什么事

感觉有点像线程。。也有点像伪类选择器

写一个关闭小广告的案例:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .box {
            position: relative;
            height: 400px;
            width: 400px;
            background-color: aquamarine;
            margin: 10px auto;
        }
        .box1{
            position: absolute;
            right: 20px;
            top: 10px;
            width: 20px;
            height: 20px;
            background-color: skyblue;
            text-align: center;
            font-size: 16px;
            cursor: pointer;
        }
    </style>
</head>

<body>
    <div class="box">
        我是广告
        <botton class="box1">
            X
        </botton>
    </div>
    <script>
        const box1=document.querySelector('.box1')
            const box = document.querySelector('.box')
        box1.addEventListener('click',function(){
            box.style.display='none'
        })
    </script>
</body>

</html>

随机点名:

js部分:

  const arrName = ['励志轩', '荷叶饭', '来上课', '好耶', '产业化', '雷阵雨', '蚊子咬']
        const start = document.querySelector('.start')
        start.addEventListener('click', function () {
            const random = parseInt((Math.random() * arrName.length))
            console.log(arrName[random]);
        })

验证一下:

再写一个监听end按钮的事件监听

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        h2 {
            text-align: center;
        }

        .box {
            width: 600px;
            margin: 50px auto;
            display: flex;
            font-size: 25px;
            line-height: 40px;
            flex-direction: row;
            flex-wrap: wrap;
        }

        .qs {
            width: 450px;
            height: 40px;
            color: lightcoral;
        }

        .btn {
            text-align: center;
        }

        .btn button {
            width: 120px;
            height: 35px;
            margin: 0 50px;
        }
    </style>
</head>

<body>
    <h2>随机点名</h2>
    <div class="box">
        <span>名字是:</span>
        <div class="qs">这里显示姓名</div>
        <div class="btn">
            <button class="start">开始</button>
            <button class="end">结束</button>
        </div>
    </div>
    <script>
        const arrName = ['励志轩', '荷叶饭', '来上课', '好耶', '产业化', '雷阵雨', '蚊子咬']
        const start = document.querySelector('.start')
        const qs = document.querySelector('.qs')
        let n = 0
        let random = 0
        start.addEventListener('click', function () {
            n = setInterval(function () {
                random = parseInt((Math.random() * arrName.length))
                // console.log(arrName[random]);
                qs.innerHTML = arrName[random]
            }, 35)
            if (arrName.length === 1) {
                start.disabled = true
                end.disabled = true
            }
        })

        const end = document.querySelector('.end')
        end.addEventListener('click', function () {
            clearInterval(n)
            arrName.splice(random, 1)
            console.log(arrName)

        })

    </script>
</body>

</html>

生成随机数的变量在定时器结束后有一个销毁,所以可以一直承载不同的数据

事件类型

焦点:光标被激活的位置

光标位置:小竖线/横线的位置

            现在大部分的光标都为一个小竖线,规则的闪动;

            而在DOS下有些光标则是短短的小横线,同样规则的闪动;

            现用的windows光标是一个图像,可以是动态的也可以是静态的,在不同情况下样子也不同。

鼠标位置:移动鼠标停下时的所在坐标位置

通过监听某个事件执行某些函数

举个例子:

键盘事件:例如按下回车发送评论

监听文本框的内容,每改变一次输入内容,执行一次函数

可以获取文本框输入的内容

 console.log(input.value)

事件对象

如何获取事件对象

事件对象的本质上是个对象

这个对象内部里有事件触发的相关信息,例如鼠标点击事件中,事件对象内部就存储了鼠标点击位置的信息

使用场景:判断用户按下了哪个键,比如按回车键发送评论;判断鼠标点击的元素

在事件绑定的回调函数的第一个参数就是事件对象

 tx.addEventListener('input',function(就是这个位置,这个参数就是事件对象,一般命名为e、en){
           
        })
eg: tx.addEventListener('input',function(e){
           
        })

监听一个按钮被按下的事件,对象里会发生什么:

  const button=document.querySelector('button')
        button=addEventListener('click',function(e){
            console.log(e)
        })

此时这个对象就是你刚刚点击的对象(相对于伪类选择器里,选择你选中或经过的元素,js里就相当于把你刚刚点击的元素定义为一个对象)

e这个参数只有在addEventListener这个函数里,才代表着一个对象,在其他函数里只是普通的参数e

使用事件对象里的属性

事件对象里有很多属性,常用的有

type:获取当前事件的类型,例如上一个按钮点击的例子,事件类型就是click

clientX/clientY:获取当前光标相对于浏览器可见窗口的左上角的位置

offsetX/offsetY:获取光标相对于当前dom元素左上角的位置

key:用户现在按下键盘键的值(keyCode是以前的用法)

按下不同键盘值后key的值

 const input = document.querySelector('input')
        input.addEventListener('keyup', function (e) {
            console.log(e.key);
        })

使用监听事件写一个b站评论样式

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        .wrapper {
            min-width: 400px;
            max-width: 800px;
            display: flex;
            justify-content: flex-end;
            margin: 20px 20px;
        }


        .wrapper textarea {
            outline: none;
            border-color: transparent;
            resize: none;
            /* 去除右下角的小三角 */
            background: #f5f5f5;
            border-radius: 4px;
            flex: 1;
            padding: 10px;
            transition: all 0.5s;
            height: 30px;
        }

        .wrapper textarea:focus {
            border-color: #e4e4e4;
            background-color: #fff;
            height: 50px;
        }

        .wrapper button {
            background: #00aeec;
            color: #fff;
            border: none;
            border-radius: 4px;
            margin-left: 10px;
            width: 70px;
            cursor: pointer;
        }

        .wrapper .total {
            color: #999;
            margin-right: 80px;
            transition: all 0.5s;
            opacity: 0;
            margin-top: 5px;
        }

        .list {
            min-width: 400px;
            max-width: 800px;
            display: flex;
        }

        .list .item {
            width: 100%;
            display: flex;
            flex-direction: row;
        }

        .avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            overflow: hidden;
            background: url(/js/images/微信图片_20241209195234.png) no-repeat center / cover;
            margin-right: 20px;
        }

        .list .item p {
            margin: 0;
        }

        .list .item .info {
            flex: 1;
            border-bottom: 1px dashed #e4e4e4;
            padding-bottom: 10px;
        }

        .list .item .name {
            color: #FB7299;
            font-size: 14px;
            font-weight: bold;
        }

        .list .item .text {
            color: #333;
            padding: 10px 0;
        }

        .list .item .time {
            color: #999;
            font-size: 12px;
        }
    </style>
</head>

<body>


    <div class="wrapper">
        <i class="avatar"></i>
        <textarea id="tx" placeholder="进来和up唠会嗑呗~"></textarea>
        <button>发布</button>
    </div>
    <div class="wrapper">
        <span class="total">0/200字</span>
    </div>
    <div class="list">
        <div class="item" style="display: none;">
            <!-- 隐藏 -->
            <div class="avatar"></div>
            <div class="info">
                <p class="name">August</p>
                <p class="text"></p>
                <p class="time"></p>
            </div>
        </div>
    </div>
    <script>
        const tx = document.querySelector('#tx')
        const total = document.querySelector('.total')
        const item = document.querySelector('.item')
        const text = document.querySelector('.text')
        const list = document.querySelector('.list')

        //1.文本域获得焦点,total显示出来
        tx.addEventListener('focus', function () {
            total.style.opacity = 1
        })
        //2.文本域失去焦点,total隐藏出来
        tx.addEventListener('blur', function () {
            total.style.opacity = 0
        })
        //3.检测用户输入
        tx.addEventListener('input', function () {
            //console.log(tx.value.length)获取长度
            total.innerHTML = `${tx.value.length}/200字`
        })
        //4.按下回车发布评论
        tx.addEventListener('keyup', function (e) {
            //按下回车键触发
            if (e.key === 'Enter') {
                //console.log(11);
                //trim()防止用户两边输入空格或者全为空格,去除空格
                if (tx.value.trim()) {
                    item.style.display = 'flex'
                    text.innerHTML = tx.value.trim()
                    //console.log(tx.value);
                }
                //按下回车的同时清空文本域
                tx.value = ''
                total.innerHTML = `0/200字`


            }
        })
    </script>
</body>

</html>

一个令我疑惑的问题是text.innerHTML = tx.value.trim()这句为什么写成text.innerHTML = tx.value也可以有效去除空格

轮播图完整版

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        li {
            list-style: none;
        }

        .slider {
            width: 560px;
            height: 400px;
            overflow: hidden;
        }

        .slider-wrapper {
            width: 100%;
            height: 320px;
        }

        .slider-wrapper img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .slider-footer {
            height: 80px;
            background-color: rgb(100, 67, 68);
            padding: 12px 12px 0 12px;
            position: relative;
        }

        .slider-footer p {
            margin: 0;
            color: #fff;
            font-size: 18px;
            margin-bottom: 10px;
        }

        .slider-indicator {
            display: flex;
            align-items: center;
        }

        .slider-indicator li {
            width: 8px;
            height: 8px;
            margin: 4px;
            border-radius: 50%;
            background: #fff;
            opacity: 0.4;
            cursor: pointer;
        }

        .slider-footer .toggle {
            position: absolute;
            right: 0;
            top: 12px;
            display: flex;
        }

        .slider-footer .toggle button {
            margin-right: 12px;
            width: 28px;
            height: 28px;
            appearance: none;
            border: none;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            border-radius: 4px;
            cursor: pointer;
        }

        .slider-indicator li.active {
            width: 12px;
            height: 12px;
            opacity: 1;
        }
    </style>
</head>

<body>
    <div class="slider">
        <div class="slider-wrapper">
            <img src="../../images/slider01.jpg" alt="">
        </div>
        <div class="slider-footer">
            <p>真正的jo厨出现了!</p>
            <ul class="slider-indicator">
                <li class="active"></li>
                <li></li>
                <li></li>
                <li></li>
            </ul>
            <div class="toggle">
                <button class="prev">&lt;</button>
                <button class="next">&gt;</button>
            </div>
        </div>
    </div>
    <script>
        const sliderData = [
            { url: '../../images/slider01.jpg', title: '真正的jo厨出现了!', color: 'rgb(36, 31, 33)' },
            { url: '../../images/slider02.jpg', title: '李玉刚:让世界通过B站看到东方大国文化', color: 'rgb(139, 98, 66)' },
            { url: '../../images/slider03.jpg', title: '快来分享你的寒假日常吧~', color: 'rgb(67, 90, 92)' },
            { url: '../../images/slider04.jpg', title: '哔哩哔哩小年YEAH', color: 'rgb(166, 131, 143)' },
        ]
        //获取元素
        const img = document.querySelector('.slider-wrapper img')
        const p = document.querySelector('.slider-footer p')
        const footer = document.querySelector('.slider-footer ')
        let i = 0
        //点击右侧按钮更换图片的操作
        const next = document.querySelector('.next')
        next.addEventListener('click', function () {//事件名称直接当匿名函数的名称传给next
            console.log(11);
            i++
            if (i >= sliderData.length) i = 0
            toggle(i)
        })
        //点击左侧按钮更换图片的操作
        const prev = document.querySelector('.prev')
        prev.addEventListener('click', function () {
            console.log(22);
            i--
            if (i < 0) i = sliderData.length - 1
            toggle(i)
        })
        //公共代码
        function toggle(i) {
            img.src = sliderData[i].url
            p.innerHTML = sliderData[i].title
            footer.style.backgroundColor = sliderData[i].color
            document.querySelector('.slider-indicator .active').classList.remove('active')
            document.querySelector(`.slider-indicator li:nth-child(${i + 1})`).classList.add('active')

        }
        //开启定时器
        let timeId = setInterval(function () {
            next.click()//调用按右边按钮的方法吗,功能是一样的
            // i++
            // if (i >= sliderData.length) i = 0
            // img.src = sliderData[i].url
            // p.innerHTML = sliderData[i].title
            // //删除之前的active效果
            // document.querySelector('.slider-indicator .active').classList.remove('active')
            // document.querySelector(`.slider-indicator li:nth-child(${i + 1})`).classList.add('active')
        }, 1000)
        const slider = document.querySelector('.slider')
        slider.addEventListener('mouseenter', function () {
            clearInterval(timeId)
        })
        slider.addEventListener('mouseleave', function () {
            timeId = setInterval(function () {
                next.click()
            }, 1000)
        })
    </script>
</body>

</html>

实现了:

1.自动播放

2.鼠标碰到大盒子暂停定时器的自动播放

3.点击左右按钮用i++和i--实现左右分别播放

4.鼠标离开以后定时器恢复

this环境对象

环境对象本身也是个对象,指的是函数内部特殊的变量this,它代表着当前函数运行时所处的环境

this到底指着谁,受当前环境的影响

每个函数里都有一个对象,举个例子:

 function fn(){
            console.log(this)
        }
        window.fn()

其实我们每次调用函数的函数名()其实是缩写,完全应该是window.fn(),window在这里可以理解为整个浏览器

在这个函数里,this指的就是window这个对象

粗略地说,谁调用这个函数,这个函数的this指针就是谁,此时这个函数是浏览器调用的

const input = document.querySelector('input')
        input.addEventListener('keyup', function () {
            console.log(this);
        })

在这个文本框里,this就是input的对象,因为input调用了他

应用场景:

当我们完成一个事件的监听时,想对事件源本身做出样式的改变,就可以:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        input {
            width: 200px;
            transition: all 0.5s;
        }

        input:focus {
            width: 300px;
        }
    </style>
</head>

<body>
    <input type="text">
    <script>
        const input = document.querySelector('input')
        input.addEventListener('keyup', function () {
            //console.log(this);
            this.style.backgroundColor='red'
//在键盘按完后,input自己的背景颜色变为红色
        })
    </script>
</body>

</html>

回调函数

当一个函数被当作参数来传递给另一个函数的时候,这个函数就是回调函数

事件监听本身也是一个回调函数

此时function就是一个回调函数

回调函数一般不会立即执行

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2256910.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

C# (WinForms) 使用 iTextSharp 库将图片转换为 PDF

iTextSharp简介 iTextSharp 是一个开源的 .NET 库&#xff0c;主要用于创建和操作 PDF 文档。它是 iText 的 .NET 版本&#xff0c;iText 是一个广泛使用的 Java 库。iTextSharp 继承了 iText 的核心功能并进行了适应 .NET 平台的调整。 iTextSharp 的主要功能包括&#xff1a…

使用 WebRtcStreamer 实现实时视频流播放

WebRtcStreamer 是一个基于 WebRTC 协议的轻量级开源工具&#xff0c;可以在浏览器中直接播放 RTSP 视频流。它利用 WebRTC 的强大功能&#xff0c;提供低延迟的视频流播放体验&#xff0c;非常适合实时监控和其他视频流应用场景。 本文将介绍如何在Vue.js项目中使用 WebRtcSt…

mysql5.7和mysql8.0安装教程(超详细)

目录 一、简介 1.1 什么是数据库 1.2 什么是数据库管理系统&#xff08;DBMS&#xff09; 1.3 数据库的作用 二、安装MySQL 1.1 国内yum源安装MySQL5.7&#xff08;centos7&#xff09; &#xff08;1&#xff09;安装4个软件包 &#xff08;2&#xff09;找到4个软件包…

ALSA笔记

alsa笔记 ALSA(Advanced Linux Sound Architecture)简介 以上是android和linux系统的音频整体架构图,他们不同的区别主要是在用户空间,Linux通过ALSA-Lib来和ALSA交互,而android则是tingyAlsa,其位于aosp源码根目录的/external/tinyalsa下; 在Kernel层,Alsa向上封装的D…

哈希表实现

哈希概念 哈希&#xff08;hash&#xff09;又称散列&#xff0c;是一种组织数据的方式。从译名来看&#xff0c;有散乱排列的意思。本质就是通过哈希函数把关键字 Key 跟存储位置建立一个映射关系&#xff0c;查找时通过这个哈希函数计算出 Key 存储的位置&#xff0c;进行快…

web复习(四)

JavaScript编程 1.计算圆的面积。 &#xff08;1&#xff09;表单中设置2个文本框、1个按钮、1个重置按钮&#xff0c;其中圆的面积文本框设置为只读&#xff1b; &#xff08;2&#xff09;编写两个自定义函数&#xff0c;分别是计算圆的面积函数area&#xff08;radius&…

第六届地博会世界酒中国菜助力广州龙美地标美食公司推动地标发展

第六届知交会暨地博会&#xff1a;世界酒中国菜助力广州龙美地标美食公司推动地标产品创新发展 2024年12月9日至11日&#xff0c;第六届粤港澳大湾区知识产权交易博览会暨国际地理标志产品交易博览会在中新广州知识城盛大启幕。本届盛会吸引了全球众多知识产权领域的专业人士和…

【期末复习】编译原理

1. 语法描述 1.1. 上下文无关文法 1.2. 句子 & 句型 & 语言 推导出来的都是句型但是如果句型中只含有终结符&#xff0c;那就是句子所有的句子合起来&#xff0c;才是语言 1.3. 文法 文法就是推导的式子。 1.4. 文法二义性 1.5. 文法二义性证明——根据最左 \ 最右推…

AI绘画设计实战-Day2

Stable Diffusion 提示词前缀 FF,(masterpiece:1.2),best quality,highres,extremely detailed CG,perfect lighting,8k wallpaper,anime,comic,game CG, FF&#xff0c;&#xff08;杰作&#xff1a;1.2&#xff09;&#xff0c;最高质量&#xff0c;高分辨率&#xff0c;极其…

python数据分析之爬虫基础:requests详解

1、requests基本使用 1.1、requests介绍 requests是python中一个常用于发送HTTP请求的第三方库&#xff0c;它极大地简化了web服务交互的过程。它是唯一的一个非转基因的python HTTP库&#xff0c;人类可以安全享用。 1.2、requests库的安装 pip install -i https://pypi.tu…

鸿雁电器发力,能否抢占康养卫浴新蓝海?

经济下行&#xff0c;叠加房地产行业的调整以及数智化浪潮的强劲推动&#xff0c;建材行业正面临着前所未有的变革与机遇。为了更好地把握行业趋势&#xff0c;求新求变&#xff0c;12月9日&#xff0c;鸿雁电器在青山湖园区鸿雁物联网大厦17楼鸿鹄厅成功举办了第四届“智创变革…

Scratch教学作品 | 3D飞行模拟器——体验飞行的无限乐趣! ✈️

今天为大家推荐一款令人惊叹的Scratch作品——《3D飞行模拟器》&#xff01;由BamBozzle制作&#xff0c;这款游戏完全用Scratch构建&#xff0c;带你体验开放世界飞行的自由与乐趣。从起飞到降落&#xff0c;每一步都需要你的精准操作&#xff01;更棒的是&#xff0c;这款游戏…

Linux服务器运维管理面板之1panel

华子目录 安装1panel使用卸载浏览器登录 安装 网站&#xff1a;https://community.fit2cloud.com/#/products/1panel/downloads 解压 [rootdocker-node1 ~]# tar -zxf 1panel-v1.10.13-lts-linux-amd64.tar.gz[rootdocker-node1 ~]# cd 1panel-v1.10.13-lts-linux-amd64/ [ro…

SpringBoot【二】yaml、properties两配置文件介绍及使用

一、前言 续上一篇咱们已经搭建好了一个springboot框架雏形。但是很多初学的小伙伴私信bug菌说&#xff0c;在开发项目中&#xff0c;为啥.yaml的配置文件也能配置&#xff0c;SpringBoot 是提供了两种2 种全局的配置文件嘛&#xff0c;这两种配置有何区别&#xff0c;能否给大…

学习笔记063——通过使用 aspose-words 将 Word 转 PDF 时,遇到的字体改变以及乱码问题

文章目录 1、问题描述&#xff1a;2、解决方法&#xff1a; 1、问题描述&#xff1a; Java项目中&#xff0c;有个需要将word转pdf的需求。本人通过使用aspose-words来转换的。在Windows中&#xff0c;转换是完全正常的。但是当部署到服务器时&#xff0c;会出现转换生成的pdf…

Linux下redis环境的搭建

1.redis的下载 redis官网下载redis的linux压缩包&#xff0c;官网地址:Redis下载 网盘链接&#xff1a; 通过网盘分享的文件&#xff1a;redis-5.0.4.tar.gz 链接: https://pan.baidu.com/s/1cz3ifYrDcHWZXmT1fNzBrQ?pwdehgj 提取码: ehgj 2.redis安装与配置 将包上传到 /…

帝可得-运营管理App

运营管理App Android模拟器 本项目的App客户端部分已经由前端团队进行开发完成&#xff0c;并且以apk的方式提供出来&#xff0c;供我们测试使用&#xff0c;如果要运行apk&#xff0c;需要先安装安卓的模拟器。 可以选择国内的安卓模拟器产品&#xff0c;比如&#xff1a;网…

用 Python 从零开始创建神经网络(十六):二元 Logistic 回归

二元 Logistic 回归 引言1. Sigmoid 激活函数2. Sigmoid 函数导数3. Sigmoid 函数代码4. 二元交叉熵损失&#xff08;Binary Cross-Entropy Loss&#xff09;5. 二元交叉熵损失导数&#xff08;Binary Cross-Entropy Loss Derivative&#xff09;6. 二进制交叉熵代码&#xff0…

高质量阅读微信小程序ssm+论文源码调试讲解

第2章 开发环境与技术 高质量阅读微信小程序的编码实现需要搭建一定的环境和使用相应的技术&#xff0c;接下来的内容就是对高质量阅读微信小程序用到的技术和工具进行介绍。 2.1 MYSQL数据库 本课题所开发的应用程序在数据操作方面是不可预知的&#xff0c;是经常变动的&…

AI 学习框架:开启智能未来的钥匙

一、热门人工智能学习框架概述 人工智能学习框架在当今的科技发展中占据着至关重要的地位&#xff0c;它为开发者提供了强大的工具&#xff0c;有力地推动了人工智能的发展&#xff0c;同时也极大地降低了开发的难度。 人工智能学习框架是帮助开发者和研究人员快速构建、训练…