従来の ASP で JavaScript の使用を開始しようとしています。ただし、これにはいくつかの「落とし穴」があるようです。これについてある程度の経験がある人は、「Blah2」コードがどうなっているのか教えてもらえますか? 「はず」のように思えますが、「これ」の使い方に問題があるようです...
<script language="javascript" runat="server">
var Blah = {};
Blah.w = function(s){Response.write(s);}
Blah.w('hello'); //this works...
var Blah2 = function(){
this.w = function(s){Response.write(s);}
//line above gives 'Object doesn't support this property or method'
return this;
}();
Blah2.w('hello');
</script>
ご指摘ありがとうございます
ティム