当我调用我的 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>