diff options
Diffstat (limited to 'files/zh-cn/web/javascript/reference/global_objects/function/caller')
-rw-r--r-- | files/zh-cn/web/javascript/reference/global_objects/function/caller/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/zh-cn/web/javascript/reference/global_objects/function/caller/index.html b/files/zh-cn/web/javascript/reference/global_objects/function/caller/index.html index a850d41582..ba3ce01a26 100644 --- a/files/zh-cn/web/javascript/reference/global_objects/function/caller/index.html +++ b/files/zh-cn/web/javascript/reference/global_objects/function/caller/index.html @@ -58,7 +58,7 @@ while (f) { <pre class="brush: js">function myFunc() { if (myFunc.caller == null) { - return ("<span><span class="string">该函数在全局作用域内被调用</span></span>!"); + return ("该函数在全局作用域内被调用!"); } else return ("调用我的是函数是" + myFunc.caller); } @@ -66,4 +66,4 @@ while (f) { <h2 id="浏览器兼容性">浏览器兼容性</h2> -<p>Function.caller目前被所有主流浏览器支持: Firefox, Safari, Chrome, Opera 和 IE. <a class="external" href="http://dl.dropbox.com/u/534786/callertest.html" title="http://dl.dropbox.com/u/534786/callertest.html"><span style="text-decoration: underline;">查看检测结果</span></a>.</p> +<p>Function.caller目前被所有主流浏览器支持: Firefox, Safari, Chrome, Opera 和 IE. <a class="external" href="http://dl.dropbox.com/u/534786/callertest.html" title="http://dl.dropbox.com/u/534786/callertest.html">查看检测结果</a>.</p> |