Web前端 JavaScript笔记4

1、元素内容

属性名称说明
元素名.innerText输出一个字符串,设置或返回元素中的内容,不识别html标签
元素名.innerHTML输出一个字符串,设置或返回元素中的内容,识别html标签
元素名.textContent设置或返回指定节点的文本内容,不识别html标签

方法:

元素名.document.write():向文档写入指定内容。

元素名.document.writeln():向文档写入指定内容并换行。

<!DOCTYPE html>
<head><meta charset="UTF-8"><title>Document</title><style>div{height: 100px;width: 250px;font-size: 20px;line-height: 100px;text-align: center;display: inline-block;}.it{background-color: aqua;}.ih{background-color: red;color: white;}.tc{background-color: yellow;}</style>
</head>
<body><div class="it">innerText</div><div class="ih"></div><div class="tc">textContent</div><script>let it=document.querySelector(".it")let ih=document.querySelector(".ih")let tc=document.querySelector(".tc")it.innerText='<i>innerText</i>'ih.innerHTML='<i>innerHTML</i>'//为他们增加倾斜效果tc.textContent='<i>TextContent</i>'</script>
</body>
</html>

我们发现只有inner HTML识别倾斜标签 

 写入文档就是写入网页里

<body><h2>注意write()方法不会在每个语句后面新增一行:</h2><pre><script>document.write("哈哈哈哈哈哈");document.write("666666");</script></pre><h2>注意writeln()方法在每个语句后面新增一行:</h2><pre><script>document.writeln("哈哈哈哈哈哈");document.writeln("666666");</script></pre>
</body>

 

练习 

<body><div></div><script>let arr = ["zhangsan", "lisi", "王麻子", "王总"]function get_random(n, m) {return Math.floor(Math.random() * ((m - n) + 1)) + n}// 1、获取元素const box = document.querySelector("div")// 2、产生随机数let random = get_random(0, arr.length - 1)// 3、更换div中的内容box.innerText = arr[random]</script></body>

 


 

2、更改属性

对象.属性 = 值

<body><form action=""><input type="button" name="" id=""></form><script>const ipt = document.querySelector("input")ipt.type = "password"</script>
</body>

本来是按钮,但是属性值被改成密码了 

 

  •  像是checked这样的属性名=属性值的属性,js在进行赋值时,通过true/false去控制属性值
  • 比如说下面的例子,男的选择按钮我在input属性里用checked默认选中,女孩相反,利用更改属性值,使女的选择按钮默认选中,男相反
<body><form action=""><input type="checkbox" checked name="sex" value="nan">男<input type="checkbox" name="sex" value="nv">女</form><script>document.querySelector("input[value='nv']").checked="ture"document.querySelector("input[value='nan']").checked=false</script>
</body>

 


 

3、更改style样式

①、对象.style.样式 = ""

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>.box{width: 200px;height: 200px;background-color: greenyellow;border: 3px solid yellow;border-radius: 50%;}
</style>
</head>
<body><div class="box"></div><script>// 1、获取元素const b = document.querySelector(".box")// 2、对象.style.样式 = ""b.style.backgroundColor="red"</script>
</body>
</html>

更改了属性,使原来绿色的背景色,变成了红色 

 ②、利用className=" "

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>div{width: 100px;height: 100px;background-color: greenyellow;border-radius: 50%;}.box{width: 200px;height: 200px;background-color: aqua;border-radius: 50%;}
</style>
</head>
<body><div></div><script>// 1、获取元素const b = document.querySelector("div")// 2、classnameb.className="box"</script>
</body>
</html>

利用ClassName为div盒子添加类名,从而更改样式 

③、利用ClassList(" ")

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>div{width: 100px;height: 100px;background-color: yellow;border-radius: 30%;}.box{width: 200px;height: 200px;background-color: aqua;border-radius: 30%;}.bb{border:5px dashed red;}
</style>
</head>
<body><div class="bb"></div><script>// 1、获取元素const b = document.querySelector("div")// 2、classListb.classList.add("box")b.classList.remove("bb")</script>
</body>
</html>

利用.bb类名为盒子设置红色边框, 使用 b.classList.remove("bb"),移除.bb类名

利用b.classList.add("box")增添box类名,改变背景色与大小的属性

补充:

如果类名存在,则移除,如果不存在,则添加

         box.classList.toggle("box1")


 

4、查找节点

 对象.属性

属性说明
parentNode

可返回某节点的父节点。如果指定的节点没有父节点则返回 null 。

children

children 属性返回元素的子元素的集合,是一个 HTML收集 对象。

提示: 根据子元素在元素中出现的先后顺序进行排序。使用 HTML收集对象的 length属性获取子元素的数量,然后使用序列号(index,起始值为0)访问每个子元素。

childNodes

childNodes 属性返回包含被选节点的子节点的 NodeList。

提示: 如果选定的节点没有子节点,则该属性返回不包含节点的 NodeList。

nextElementSibling

返回指定元素之后的下一个兄弟元素

previousElementSibling

返回指定元素的前一个元素。

nextSibling

返回选定元素的下一个同级节点

children 属性与 childNodes属性的差别:

  • childNodes 属性返回所有的节点,包括文本节点、注释节点;
  • children 属性只返回元素节点;

nextSibling 属性与 nextElementSibling 属性的差别:

  • nextSibling 属性返回元素节点之后的兄弟节点(包括文本节点、注释节点);
  • nextElementSibling 属性只返回元素节点之后的兄弟元素节点(不包括文本节点、注释节点);
  <script>console.log(1)console.log(document.querySelector(".son").parentNode)console.log(2)console.log(document.querySelector(".father").children)console.log(3)console.log(document.querySelector(".father").childNodes)// 查找兄弟jiedianconsole.log(4)console.log(document.querySelector(".son").nextElementSibling)console.log(5)console.log(document.querySelector(".son1").previousElementSibling)console.log(6)console.log(document.querySelector(".son").nextSibling)</script>

 


 

5、事件监听

①、事件源.on+事件类型=匿名函数

同一个事件源,后面注册的事件会对前面注册的事件进行覆盖

<body><button>点击</button><div></div><script>const button = document.querySelector("button")const box = document.querySelector("div")button.onclick = function () {box.style.backgroundColor = "yellow"}button.onclick = function () {box.innerHTML='<b>6666</b>'}</script></body>
没有加 第二个功能块 的时候的时候加 上第二个功能块之后

去除监听:

事件源.on+事件类型=null

②、事件源.addEventListener("事件类型",行为,【是否捕获】)

是否捕获是true或者false,选填

方法为元素附加事件处理程序而不会覆盖已有的事件处理程序。

<body><button>点击</button><div></div><script>// 事件监听    不会覆盖button.addEventListener("click",()=>{box.style.backgroundColor = "yellow"}, true)button.addEventListener("click",()=>{box.innerHTML='<b>6666</b>'}, true)
</script>
</body>
没有加 第二个功能块 的时候的时候加 上第二个功能块之后

去除监听:

事件源.removeEventListener("事件", 行为,【是否捕获】)

6、练习

<!DOCTYPE html>
<html><meta charset="UTF-8" /><title></title><style type="text/css">* {margin: 0;padding: 0;}ul {list-style: none;}.wrapper {width: 1000px;height: 475px;margin: 0 auto;margin-top: 100px;}.tab {border: 1px solid #ddd;border-bottom: 0;height: 36px;width: 320px;}.tab li {position: relative;float: left;width: 80px;height: 34px;line-height: 34px;text-align: center;cursor: pointer;border-top: 4px solid #fff;}.tab span {position: absolute;right: 0;top: 10px;background: #ddd;width: 1px;height: 14px;overflow: hidden;}.products {width: 1002px;border: 1px solid #ddd;height: 476px;}.products .main {float: left;display: none;width: 1000px;height: 480px;}.products .main:nth-child(1) {background-color: pink;}.products .main:nth-child(2) {background-color: rgb(236, 5, 44);}.products .main:nth-child(3) {background-color: rgb(59, 13, 228);}.products .main:nth-child(4) {background-color: rgb(49, 216, 7);}.products .main.active {display: block;}.tab li.active {border-color: red;border-bottom: 0;}</style>
</head><body><div class="wrapper"><ul class="tab"><li class="tab-item active">国际大牌<span>◆</span></li><li class="tab-item">国妆名牌<span>◆</span></li><li class="tab-item">清洁用品<span>◆</span></li><li class="tab-item">男士精品</li></ul><div class="products"><div class="main active"></div><div class="main"></div><div class="main"></div><div class="main"></div></div></div><script>// 获取元素对象let lis = document.querySelectorAll(".tab .tab-item")let divs = document.querySelectorAll(".products .main")//遍历for (let i = 0; i < lis.length; i++) {// li添加事件监听lis[i].addEventListener("click", function () {document.querySelector(".tab .active").classList.remove("active")lis[i].classList.add("active")document.querySelector(".products .active").classList.remove("active")divs[i].classList.add("active")})}</script></body></html>

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

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Pygame经典游戏:贪吃蛇

------------★Pygame系列教程★------------ Pygame经典游戏&#xff1a;贪吃蛇 Pygame教程01&#xff1a;初识pygame游戏模块 Pygame教程02&#xff1a;图片的加载缩放旋转显示操作 Pygame教程03&#xff1a;文本显示字体加载transform方法 Pygame教程04&#xff1a;dra…

【uniapp】vscode安装插件、ts校验、允许json文件注释

1、vscode安装的插件&#xff1a; uni-create-viewuni-hlperuniapp小程序扩展 2、ts校验 安装插件&#xff1a; pnpm i -D types/wechat-miniprogram uni-helper/uni-app-types配置tsconfig.json {"extends": "vue/tsconfig/tsconfig.json","compi…

基于数据库现有表导出为设计文档

1.查询 SELECTCOLUMN_NAME 字段名,COLUMN_COMMENT 字段描述,COLUMN_TYPE 字段类型,false as 是否为主键 FROMINFORMATION_SCHEMA.COLUMNS wheretable_NAME region -- 表名2.查询结果 3.导出为excel

Python(11):网络编程

文章目录 一、一些基本概念二、软件的开发架构&#xff08;c/s架构和b/s架构&#xff09;三、OSI模型四、socket套接字编程1.socket编程过程2.python中的socket编程 一、一些基本概念 来了解一些网络的基本概念 名词解释IP&#xff08;互联网协议地址&#xff09;IP用来标识网…

抖音扫码登录

抖音扫码登录&#xff0c;ck可以点赞关注上传视频 主要涉及参数: bd_ticket_guard_client_data bd_ticket_guard_server_data bd_ticket_guard_ree_public_key bd_ticket_crypt_cookie x–secadk–csrf–token req_sign abogus ts_sign ticket {"is_digg":…

MySQL之锁详细总结

介绍 锁是计算机协调多个进程或线程并发访问某一资源的机制。在数据库中&#xff0c;除传统的计算资源&#xff08;CPU、RAM、I/O&#xff09;的争用外&#xff0c;数据也是一种供多用户共享的资源。如何保证数据并发访问的一致性、有效性是所有数据库必须解决的一个问题&…

记一次事件到供应链的顶级拉扯

前言 某天&#xff0c;夜里3点 天刚蒙蒙亮 开局&#xff1a;我有一个朋友~ 看不懂发的什么意思&#xff0c;再仔细看看&#xff0c;懂了! 闲言少叙&#xff0c;遇事不决先上bp&#xff0c;启动&#xff01; 进去之后发现基本没什么实际功能点&#xff0c;像假的一样。注意这里…

DC-5渗透测试复现

DC-5渗透测试复现 目的&#xff1a; 获取最高权限以及5个flag 过程&#xff1a; 信息打点-文件包含漏洞-弹shell- scren-4.0.5提权 环境&#xff1a; 攻击机&#xff1a;kali(192.168.85.136) 靶机&#xff1a;DC_3(192.168.85.134) 复现&#xff1a; 一.信息收集 nma…

分享|为什么说Temu项目是蓝海项目?

在当今日新月异的互联网行业中&#xff0c;Temu项目以其独特的商业模式和前瞻性的市场布局&#xff0c;迅速崛起成为一颗耀眼的新星。它被业内普遍认为是一片尚未被完全开发的蓝海&#xff0c;具有巨大的市场潜力和发展空间。那么&#xff0c;为什么说Temu项目是蓝海项目呢? 首…

初识C++之内联函数 auto关键字

初识C之内联函数 auto关键字 文章目录 初识C之内联函数 auto关键字一、 内联函数1.1 定义1.2 应用1.3 特性 二、auto关键字2.1 简介2.2 auto的详细使用2.3 范围for&#xff08;C&#xff09;2.4 注意事项 一、 内联函数 1.1 定义 以inline修饰的函数叫做内联函数&#xff0c;…

【Quartz】Quartz定时任务框架

目录 什么是Quartz&#xff1f; Job详解 Trigger详解 1、优先级 2、misfire&#xff1a;错过触发 1&#xff09;判断条件 2&#xff09;产生原因&#xff08;可能情况&#xff09; 3&#xff09;策略 Scheduler详解 JobDataMap详解 SpringBoot整合Quartz 引入依赖 …

一文了解HTTPS的加密原理

HTTPS是一种安全的网络通信协议&#xff0c;用于在互联网上提供端到端的加密通信&#xff0c;确保数据在客户端&#xff08;如Web浏览器&#xff09;与服务器之间传输时的机密性、完整性和身份验证。HTTPS的加密原理主要基于SSL/TLS协议&#xff0c;以下详细阐述其工作过程&…