我正在使用Javascript及其原型功能调用该函数并编写了以下代码。
function validateInteger(value) {
console.log(value);
if (value == '' || value == null){
return null;
}
}
function isValidInteger(obj) {
console.log(obj);
isValidInteger.prototype.validate = validateInteger;
}
所以在这里我想知道,我怎样才能将这个obj param传递给validateInteger。 并且validateInteger还必须在表单提交时接受其值。
有人可以帮我吗?
谢谢