vbs中的property
发布网友
发布时间:2022-04-25 03:51
我来回答
共1个回答
热心网友
时间:2023-10-24 06:50
类似于get,set两个成对函数,至于触发事件只能在这两个函数里调用一个空函数,然后重写该函数,就好比触发了该事件
<SCRIPT LANGUAGE="JavaScript">
<!--
/*定义对象*/
function demo()
{
this.v = 0;
this.setV = function(vv){this.eventChangeV();this.v = vv;}
this.getV = function(){return this.v;};
}
//定义事件
demo.prototype.eventChangeV = function()
{
}
//重写事件
demo.prototype.eventChangeV = function()
{
alert('v is changed');
}
var a = new demo();
a.setV(1);
alert(a.getV());
//-->
</SCRIPT>