パラメータとして配列を渡す必要がありますが、問題があります。説明する方法がわからないので、例を次に示します。
私はこのコードを持っています:
var doc = document;
var Class = {};
Class.Validate = function(opc)
{
alert(opc.id);//
return Class;// when returns the object the alert trigger as expected showing "#name"
};
Class.Validate({
id: "#name",
})
しかし、私がやろうとしているのはこれです:
var Class = {};
Class.Validate = function(opc)
{
alert(opc.name);//when the object is return show display "carlosmaria"
return Class;//
};
Class.Validar({
name: {field:"carlos",field:"maria"},
})
どうすればそれをアーカイブできますか?