gpt4 book ai didi

javascript - 两个不同脚本标签中的相同变量

转载 作者:行者123 更新时间:2023-11-30 08:45:29 25 4
gpt4 key购买 nike

这是我的第一个标签

<script type="text/javascript"> 
$(document).ready(function () {

// some code

var showWarning = true;

// more code

});
</script>

然后我有另一个脚本标签:

<script type="text/javascript">
function submitFormLink(){
document.getElementById('vacationApplicationForm').action = '<c:url value="/preview-pdf"/>';
document.getElementById('vacationApplicationForm').method = 'POST';
document.getElementById('vacationApplicationForm').submit();
}
function submitFormButton(){
if (showWarning == true){
alert("hi");
}
document.getElementById('vacationApplicationForm').action = '';
document.getElementById('vacationApplicationForm').method = 'POST';
document.getElementById('vacationApplicationForm').submit();
}
</script>

我收到一条错误消息,指出 showWarning 未定义。我在同一个窗口中读到变量是一个全局变量。那么我在这里做错了什么?

最佳答案

您没有声明全局。

您在函数中使用了 var 关键字,因此:

  • 直到函数运行才会被定义
  • 它将是函数的局部

如果你想要一个全局的,在全局范围内创建变量:

<script type="text/javascript"> 
var showWarning = true;
$(document).ready(function () {
// some code
// more code
});
</script>

关于javascript - 两个不同脚本标签中的相同变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22353843/

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