这可以在Javascript中做到这一点吗?如何做到这一点?
function MyClick(){
ValidateTime(sender, args); // what is the right way to call it?
}
function ValidateTime(sender, args) { //sender and args;these arguments are from a validator control
}
我需要 MyClick 调用它ClientValidationFunction(ValidateTime)
。