gpt4 book ai didi

Javascript 字符串未定义

转载 作者:搜寻专家 更新时间:2023-11-01 05:19:26 25 4
gpt4 key购买 nike

我有这样的代码:

<html>
<head>
<script language="javascript">
window.onload = function() {
for(i = 0; i < 26; i++) {
var x = document.createElement("INPUT");
x.setAttribute("type", "button");
x.setAttribute("value", String.fromCharCode(i + 65));
x.setAttribute("id", String.fromCharCode(i + 65));
x.setAttribute("onclick", "isTOF(self.id)");
document.body.appendChild(x);
}
}

function isTOF(v) {
alert(v);
}
</script>
</head>
<body>
</body>
</html>

我想让它提醒自己的字母表(值),但它不起作用。

因此,例如,当我单击 A 按钮时,程序应提示“A”。

但它会提示“未定义”。

不知道是什么问题

我想让我的代码正常工作。

我怎样才能做到?

最佳答案

您遇到的问题是由于 self 未定义引起的。相反,您应该使用您已经设置的值,并将 this 传递给 isTOF:

<html>
<head>
<script language="javascript">
window.onload = function() {
for(i = 0; i < 26; i++) {
var x = document.createElement("INPUT");
x.setAttribute("type", "button");
x.setAttribute("value", String.fromCharCode(i + 65));
x.setAttribute("id", String.fromCharCode(i + 65));
x.setAttribute("onclick", "isTOF(this)");
document.body.appendChild(x);
}
}

function isTOF(v) {
alert(v.value);
}
</script>
</head>
<body>
</body>
</html>

通过这种方式,您可以将对该元素的引用传递给 isTOF,以防您想对其进行任何操作或仅供引用。

希望这对您有所帮助!

关于Javascript 字符串未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53246363/

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