diff options
author | Elan Bin <yhbflydream@gmail.com> | 2021-07-13 14:58:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-13 14:58:53 +0800 |
commit | 394f267824127692f472fc71a94f2d78ee9db819 (patch) | |
tree | 0b06d309f1251801873f6e4494cf20df53d82a96 /files/zh-cn/web | |
parent | 51c60ff2b4bd49f888aa9e11471e66bb7569556a (diff) | |
download | translated-content-394f267824127692f472fc71a94f2d78ee9db819.tar.gz translated-content-394f267824127692f472fc71a94f2d78ee9db819.tar.bz2 translated-content-394f267824127692f472fc71a94f2d78ee9db819.zip |
fix: the 'eval' jump to the correct link (#1483)
the 'eval' has been translated
Diffstat (limited to 'files/zh-cn/web')
-rw-r--r-- | files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html index 827393f1ea..60ac12c2eb 100644 --- a/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html +++ b/files/zh-cn/web/api/html_dom_api/microtask_guide/in_depth/index.html @@ -33,7 +33,7 @@ translation_of: Web/API/HTML_DOM_API/Microtask_guide/In_depth <ul> <li>全局上下文是为运行代码主体而创建的执行上下文,也就是说它是为那些存在于JavaScript 函数之外的任何代码而创建的。</li> <li>每个函数会在执行的时候创建自己的执行上下文。这个上下文就是通常说的 “本地上下文”。</li> - <li>使用 {{jsxref("eval()")}} 函数也会创建一个新的执行上下文。</li> + <li>使用 {{jsxref("Global_Objects/eval", "eval()")}} 函数也会创建一个新的执行上下文。</li> </ul> <p>每一个上下文在本质上都是一种作用域层级。每个代码段开始执行的时候都会创建一个新的上下文来运行它,并且在代码退出的时候销毁掉。看看下面这段 JavaScript 程序:</p> |