是否可以在JavaScript函数中定义全局变量?

我想在其他函数中使用trailimage变量(在makeObj函数中声明)。

<html xmlns="http://www.w3.org/1999/xhtml">
    <head id="Head1" runat="server">
        <title></title>
        <script type="text/javascript">
            var offsetfrommouse = [10, -20];
            var displayduration = 0;
            var obj_selected = 0;
            function makeObj(address) {
                **var trailimage = [address, 50, 50];**
                document.write('<img id="trailimageid" src="' + trailimage[0] + '" border="0"  style=" position: absolute; visibility:visible; left: 0px; top: 0px; width: ' + trailimage[1] + 'px; height: ' + trailimage[2] + 'px">');
                obj_selected = 1;
            }

            function truebody() {
                return (!window.opera && document.compatMode && document.compatMode != "BackCompat") ? document.documentElement : document.body;
            }
            function hidetrail() {
                var x = document.getElementById("trailimageid").style;
                x.visibility = "hidden";
                document.onmousemove = "";
            }
            function followmouse(e) {
                var xcoord = offsetfrommouse[0];
                var ycoord = offsetfrommouse[1];
                var x = document.getElementById("trailimageid").style;
                if (typeof e != "undefined") {
                    xcoord += e.pageX;
                    ycoord += e.pageY;
                }
                else if (typeof window.event != "undefined") {
                    xcoord += truebody().scrollLeft + event.clientX;
                    ycoord += truebody().scrollTop + event.clientY;
                }
                var docwidth = 1395;
                var docheight = 676;
                if (xcoord + trailimage[1] + 3 > docwidth || ycoord + trailimage[2] > docheight) {
                    x.display = "none";
                    alert("inja");
                }
                else
                    x.display = "";
                x.left = xcoord + "px";
                x.top = ycoord + "px";
            }

            if (obj_selected = 1) {
                alert("obj_selected = true");
                document.onmousemove = followmouse;
                if (displayduration > 0)
                    setTimeout("hidetrail()", displayduration * 1000);
            }
        </script>
    </head>
    <body>
        <form id="form1" runat="server">
        <img alt="" id="house" src="Pictures/sides/right.gif" style="z-index: 1; left: 372px;
            top: 219px; position: absolute; height: 138px; width: 120px" onclick="javascript:makeObj('Pictures/sides/sides-not-clicked.gif');" />
        </form>
    </body>
</html>

当前回答

全局变量在函数外部声明,以便在整个程序中访问,而局部变量存储在函数中,使用var,仅在该函数的作用域内使用。如果你声明一个变量没有使用var,即使它在函数中,它仍然会被视为全局变量。 参考资料= https://www.freecodecamp.org/news/global-variables-in-javascript-explained/

其他回答

所有声明的变量都没有“var”或“let”或任何前面的东西,如“const”,都是全局变量。所以…

function myFunction(){

     myVar = "value"; // myVar is a global variable and can be used anywhere inside <script> tags.

}

是的,你可以。不要用var,不要用let。只需初始化变量,它将自动被分配为全局:

    function firstFunction() {
        if (typeof(testVar) === "undefined") {testVar = 1;} //initializing variable if not initialized
        testVar += 1;
        console.log('Test variable inside 1st function: '+testVar);
    }
    function secondFunction() {
        testVar += 1;
        console.log('Test variable inside 2nd function: '+testVar);
    } 
    firstFunction();
    secondFunction();
    testVar += 1;
    console.log('Test variable outside: '+testVar);

典型的例子:

window.foo = 'bar';

一个现代的,安全的例子,通过使用IIFE遵循最佳实践:

;(function (root) {
    'use strict'

    root.foo = 'bar';
)(this));

现在,也有使用WebStorage API的选项:

localStorage.foo = 42;

or

sessionStorage.bar = 21;

在性能方面,我不确定它是否比在变量中存储值明显慢。

广泛的浏览器支持,如“我可以使用....”所述

如果你读了评论,就会发现关于这个命名约定的讨论很不错。

似乎自从我的回答发布后,命名惯例变得更加正式了。教书、写书的人会谈论var声明和函数声明。

下面是支持我观点的另一篇维基百科文章:声明和定义 ...来回答主要问题。在函数之前声明变量。这将工作,它将遵守在作用域顶部声明变量的良好实践:)

如果你正在创建一个启动函数,你可以这样定义全局函数和变量:

function(globalScope)
{
    // Define something
    globalScope.something()
    {
        alert("It works");
    };
}(window)

因为函数是通过这个参数全局调用的,所以这里是全局作用域。所以,这个东西应该是全球性的。