为什么conslole.log打印的值不相同
本帖最后由 李万金 于 2022-4-28 09:16 编辑<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scoped CSS Variables and JS</title>
</head>
<body>
<h2>Update CSS Variables with <span class='hl'>JS</span></h2>
<div class="controls">
<label for="spacing">Spacing:</label>
<input id="spacing" type="range" name="spacing" min="10" max="200" value="10" data-sizing="px">
<label for="blur">Blur:</label>
<input id="blur" type="range" name="blur" min="0" max="25" value="10" data-sizing="px">
<label for="base">Base Color</label>
<input id="base" type="color" name="base" value="#ffc600">
</div>
<img src="https://source.unsplash.com/7bwQXzbF6KE/800x500">
<style>
:root {
--base: #ffc600;
--spacing: 10px;
--blur: 10px;
}
img {
padding: var(--spacing);
background: var(--base);
filter: blur(var(--blur));
}
.hl {
color: var(--base);
}
/*
misc styles, nothing to do with CSS variables
*/
body {
text-align: center;
background: #193549;
color: white;
font-family: 'helvetica neue', sans-serif;
font-weight: 100;
font-size: 50px;
}
.controls {
margin-bottom: 50px;
}
input {
width: 100px;
}
</style>
<script>
let inputs = document.querySelectorAll('.controls input');
function picUpdate(){
let suffix = this.dataset.sizing || '';
console.log(this);
console.log(this.value)
document.documentElement.style.setProperty(`--${this.name}`, this.value + suffix);
}
inputs.forEach(input => input.addEventListener('change', picUpdate));
// inputs.forEach(input => input.addEventListener('mousemove', picUpdate));
</script>
</body>
</html>
如上传图所示,为什么两个值不同
{:5_106:}啥代码都没有,你是指望别人掐指给你算出来吗 是不是你在输入框输入了 13 ? 洋洋痒 发表于 2022-4-27 23:04
啥代码都没有,你是指望别人掐指给你算出来吗
才发现可以上传代码 李万金 发表于 2022-4-28 09:17
才发现可以上传代码
很明显的错误,不知道咋改!!!
Uncaught TypeError: Cannot read property 'sizing' of undefined
at picUpdate (TEST4.HTML:70)
at TEST4.HTML:76
picUpdate @ TEST4.HTML:70
(anonymous) @ TEST4.HTML:76 本帖最后由 洋洋痒 于 2022-4-28 21:32 编辑
你发的代码应该是后来改过了吧? 用这个函数document.querySelectorAll出来的结果挨个打印我试了试,你不管怎么变打印结果都是不变的
this一直都是不变的,我猜和document.querySelectorAll原理有关
页:
[1]