onclick trigger doesn#39;t work first click(onclick 触发器在第一次点击时不起作用)
问题描述
我很困惑为什么 onclick 函数在第一次被点击时没有注册.每个带有 onclick 触发器的 div 第一次必须被点击两次.
function selected(elmnt) {if (elmnt.style.backgroundColor == "透明")elmnt.style.backgroundColor = "#990000"别的elmnt.style.backgroundColor = "透明"}
#container {背景颜色:透明;高度:100px;宽度:100px;}
<div id="container" onclick="selected(this)">点我</div>
上一个>
我错过了什么吗?
是因为你的元素样式不透明.只有您的元素的 computedStyle
是.试试这个:
function selected(elmnt) {if (elmnt.style.backgroundColor == "透明")elmnt.style.backgroundColor = "#990000"别的elmnt.style.backgroundColor = "透明"}
#container {背景颜色:透明;高度:100px;宽度:100px;}
<div id="container" onclick="selected(this)" style="background-color: transparent;">click我</div>
还有自然的方式:
function selected(elmnt) {if (elmnt.style.backgroundColor == "")elmnt.style.backgroundColor = "#990000"别的elmnt.style.backgroundColor = ""}
#container {背景颜色:透明;高度:100px;宽度:100px;}
<div id="container" onclick="selected(this)">点我</div>
上一个>
I'm confused why the onclick function doesn't register the first time it is clicked. Each div with the onclick trigger has to be clicked twice the first time.
function selected(elmnt) {
if (elmnt.style.backgroundColor == "transparent")
elmnt.style.backgroundColor = "#990000"
else
elmnt.style.backgroundColor = "transparent"
}
#container {
background-color: transparent;
height: 100px;
width: 100px;
}
<div id="container" onclick="selected(this)">click me</div>
Am I missing something here?
It is because your element style is not transparent. Only your element's computedStyle
is. Try this:
function selected(elmnt) {
if (elmnt.style.backgroundColor == "transparent")
elmnt.style.backgroundColor = "#990000"
else
elmnt.style.backgroundColor = "transparent"
}
#container {
background-color: transparent;
height: 100px;
width: 100px;
}
<div id="container" onclick="selected(this)" style="background-color: transparent;">click me</div>
There's also the natural way:
function selected(elmnt) {
if (elmnt.style.backgroundColor == "")
elmnt.style.backgroundColor = "#990000"
else
elmnt.style.backgroundColor = ""
}
#container {
background-color: transparent;
height: 100px;
width: 100px;
}
<div id="container" onclick="selected(this)">click me</div>
这篇关于onclick 触发器在第一次点击时不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:onclick 触发器在第一次点击时不起作用
基础教程推荐
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01