gpt4 book ai didi

javascript - 为什么我的 JavaScript 函数 "a"没有定义?

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

当我调用我的 JavaScript 函数 B 时,Firefox 中的 JavaScript 控制台显示函数 A 未定义,但在 Chrome 浏览器中已定义。当我在主体部分调用函数“A”时:

<input type="button" onclick="A()" value=" ..A.. ">

Firefox 说函数 B 未定义。为什么?

<html>
<head>
<script language="javascript" type="text/javascript">
function B() {
alert(" hi B ");
document.write('<br><br><input type="button" onClick="A()" value=" ..A..">');
};

function A() {
alert(" hi A");
document.write('<br><br><input type="button" onclick="B()" value=" ..b..">');
if (window.WebCL == undefined) {
alert("Unfortunately your system does not support WebCL. ");
return false;
}
}
</script>
</head>
<body>
<input type="button" onclick="B()" value=" ..B.. ">
</body>
</html>

最佳答案

第一次写入清除文档内容,导致函数A未定义

关于javascript - 为什么我的 JavaScript 函数 "a"没有定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10056253/

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