mathjax中的窗口数组

发布于 2024-12-27 12:36:16 字数 229 浏览 0 评论 0原文

我正在尝试理解 MathJax 的 api,以实现我正在编写的 hack。第一行代码是一个具有 window 数组的匿名函数。这个“window数组”是什么?这是代码:

(function (d) {
            var b = window[d];
//...
})('MathJax')

请帮助我理解这一点。

I'm trying to understand MathJax's api for a hack i'm writing. The first line of code is an anonymous function that has a window array. What is this "window array"? Here is the code:

(function (d) {
            var b = window[d];
//...
})('MathJax')

Please help me make sense of this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏の忆 2025-01-03 12:36:16

那不是一个数组;而是一个数组。它只是 window 对象。

在 JavaScript 中,有两种方法可以访问对象的属性:object.propertyobject['property']

第一种语法仅在属性名称是有效的 JavaScript 标识符时才有效;第二个适用于任何属性名称。

这是一个与您的代码有些匹配的人为演示(在 JSFiddle 上尝试):

function lookThroughWindow(nameOfProperty) {
    alert(window[nameOfProperty]);
}

var propertyName = 'location';
lookThroughWindow(propertyName);

// The above just does this:
alert(window.location);

That isn't an array; it's just the window object.

In JavaScript, there are two ways to access an object's properties: object.property and object['property'].

The first syntax only works when the property's name is a valid JavaScript identifier; the second works for any property name.

Here's a contrive demonstration that somewhat matches your code (try it on JSFiddle):

function lookThroughWindow(nameOfProperty) {
    alert(window[nameOfProperty]);
}

var propertyName = 'location';
lookThroughWindow(propertyName);

// The above just does this:
alert(window.location);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文