比如说我定义了两个按钮分别为s1和s2
s1.onRelease = function() {
//省略中间事件
}
//称为方法1
s2.onRelease = function() {
//省略中间事件
}
//称为方法2
如果要实现,在方法1的过程没有完成的时候,方法2不能被触发?
急用!
如何才能
比如说我定义了两个按钮分别为s1和s2
s1.onRelease = function() {
//省略中间事件
}
//称为方法1
s2.onRelease = function() {
//省略中间事件
}
//称为方法2
如果要实现,在方法1的过程没有完成的时候,方法2不能被触发?
急用!
如何才能
首先定义一个布尔变量
var a = false;
s1.onRelease = function() {
//省略中间事件
//执行完后将a值改变
a = true;
}
s2.onRelease = function() {
//检查a值
if(a == true){
//省略中间事件
//执行完后再改变A值,等待下一次的触发
a = false;
}
}