如何使用原型属性传递param

时间:2017-08-22 16:20:48

标签: javascript

我正在使用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还必须在表单提交时接受其值。

有人可以帮我吗?

谢谢

0 个答案:

没有答案