JavaScript | 事件 HTML标签互动
Q: 什么是事件?A: 事件就是当我们和HTML标签元素发生交时产生的行为一些常用事件 // onclick: 单击事件 // ondblclick: 双击事件 // onblur: 失去焦点 // onfocus: 获得焦点 // onchange: 改变 // onload: 加载 <body onlo...
作曲 : Lindsey Stirling/RuthAnne Cunningham/Wendy Wang/Gladius
Lights go down inside your head again (你心中的曙光 又一次黯淡)
The walls are thin (淡淡的压迫感)
Like they're closin' in (却也足以让你身陷囹圄)
Lost yourself inside a broken mirror (你迷失在支离破碎的镜子之中)
'Cause that's what you fear (因为那些场景 触动着你内心最深处的恐惧)
But I'm still here (但没关系 我还陪伴在你身边)
Push me out, I'll pull you closer (你将我推开 我却会拥你入怀)
When you think that it's all over (当你觉得这场鏖战的终局将是惨败)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
Oh, you're bigger than this moment (此刻 一切聚焦于你)
Might be bent but you're not broken (你也许满身疮痍 但战斗的意志还从未沉没)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
'Cause I know what you're made of (因为我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (因为我深知 何物铸就了如今的你)
Burned out with the fire in your eyes (你眸中的烈火 随着你的炮火一同渐燃渐熄)
But you're gonna rise (但是你终会崛起)
'Cause you know how to fight (因为你是骨子里的战士)
And you might fall down further than before (你也许会沉沦到更为幽暗的海底)
But it takes hittin' the floor (但只有撞击海底的疼痛)
To know you're worth much more (才能让你意识到自己的价值)
Push me out, I pull you closer (你将我推开 我却会拥你入怀)
When you think that it's all over (当你觉得这场鏖战的终局将是惨败)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
Oh, you're bigger than this moment (此刻 一切聚焦于你)
Might be down but you're not broken (你也许满身疮痍 但战斗的意志还从未沉没)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
'Cause I know what you're made of (因为我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
Said, I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
(You will never be unloved by me) ((我对你的爱将此生不变))
I know what you're made of (我深知 何物铸就了如今的你)
I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
Push me out, I pull you closer (你将我推开 我却会拥你入怀)
When you think that it's all over (当你觉得这场鏖战的终局将是惨败)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
Push me out, I pull you closer (你将我推开 我却会拥你入怀)
When you think that it's all over (当你觉得这场鏖战的终局将是惨败)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
Oh, you're bigger than this moment (此刻 一切聚焦于你)
Might be down but you're not broken (你也许满身疮痍 但战斗的意志还从未沉没)
Know that you will never be unloved by me (要知道 我对你的爱将此生不变)
I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
I know what you're made of (我了然 你铜皮铁甲下柔软的内心)
I know what you're made of (我深知 何物铸就了如今的你)
Today is Happy~
Q: 什么是事件?A: 事件就是当我们和HTML标签元素发生交时产生的行为一些常用事件 // onclick: 单击事件 // ondblclick: 双击事件 // onblur: 失去焦点 // onfocus: 获得焦点 // onchange: 改变 // onload: 加载 <body onlo...
新方法// 根据选择器去抓取一个元素 let div = document.querySelector("div"); console.log(div);// 根据选择器抓取多个元素 let divs = document.querySelectorAll("div"); ...
Array1.concat() 连接2.join() 设置分隔符连接数组为一个字符串3.pop() 删除数组的最后一个元素4.sort() 排序,从小到大排序Global1.isNaN() 判断一个值 是否 “不是数字”2.parseFloat() 把一个整数转换成小数3.parseInt() 把一个小数转换成整...
For 循环for (let i = 0 ; i < 10 ; i++ ) { code; } /* let i = 0 初始化条件 ->只执行一次初始化 当 i=0 时,循环开始 i < 10 判断条件 当不满足此条件时 退出循环 i++ 循环条件,每次“循环体”执行完毕 i 本身...
if 写法 | 自己写法 let year=2022; let month = 7; let day=11; function isRun(year) { if((year%4==0 && year%100!=0) || year%400==0) {...
数字(number):整数,正数,负数,小数布尔型(boolean):true or false (1 0)字符串(string):“aaa”,“some chinese”空(null):没有值undefined:未定义开发中使用变量 而尽可能少使用字面量在 JavaScript 新版本中,推出了两个新方式代替 ...
html 内的基本标签head: 头部title: 适配搜索引擎 但只能有一个 Document 主页名称 meta charset = "UTF-8" 设置编码为全球通用编码script: 定义JS,写入JS代码等body: 大部分的内容全部写入body中注: 浏览器存在容错率 有纠正的功能body 内的基...