在这种情况下,有两件事我不太了解
首先,有一个采用这种格式的 javascript
function Allocate()
{
this.Name = $("allocateName");
this.AddAllocation = $("addAllocation");
this.setCustom= $("setCustom");
}
... some other initializations here
Allocate.prototype.EnableAllocations = function() {
this.enableAllAlloactions();
this.setCustomAllocations();
}
这只是一个例子,那么这是 Javascript 中的某种类吗?这是在一个名为 Allocate.js 的文件中。
我的问题如下:
如果我要调用 EnableAllocations,Page.ClientScript.RegisterClientScriptBlock(...);
我会怎么做?