本文介绍了服务器端JavaScript - 传统的ASP的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在客户端JavaScript的本操作符是window对象。
什么是本运营商在传统的ASP服务器端JavaScript?

在以下code,什么是本,在传统的ASP服务器端运行时参考?

 测试();功能测试()
{
    的Response.Write(typeof运算(本));
}


解决方案

这个对象似乎在服务器端ASP页的全球范围内接受特别治疗。在我的测试中,可以追加这个响应全局对象(暗影精灵怀疑):

  this.Response.write(富!);

正常工作。但你不能在反映这种对象本身。试图的(在此VAR​​键)抛出异常:

You get the same exception just for testing the existence of this:

if (this) { ... }

So it is not a normal javascript object at all, and (as Shadow Wizard says) is pretty useless in the global scope.

这篇关于服务器端JavaScript - 传统的ASP的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-01 18:50