gpt4 book ai didi

javascript - 我无法理解为什么他们在 myFunction(this) 和 myFunction(x) 中使用?扰乱我的心

转载 作者:行者123 更新时间:2023-11-27 23:42:44 26 4
gpt4 key购买 nike

<!DOCTYPE html>
<html>
<head>
<title>Onfocusin</title>
</head>
<body>
Enter Your Name:
<input type="text" onfocusin="myFunction(this)">
<script>
function myFunction(x) {
x.style.background = "Red";
}
</script>
</body>
</html>

我无法理解为什么他们使用 myFunction(this) 和 myFunction(x)?打扰我的心

最佳答案

this 指的是当前元素,在您的情况下,input 元素在函数中传递。然后使用函数 myFunction(x) 更改其样式。这是通过引用传递的示例。

关于javascript - 我无法理解为什么他们在 myFunction(this) 和 myFunction(x) 中使用?扰乱我的心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33519277/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com