我想将一些选项作为对象传递给我的jQuery插件。 我就是这样做的:
$("#contact-form").formValidate({
contactname: {
"minLength": 5
},
contactemail : {
"minLength": 4
},
contactsubject : {
"minLength": 10
},
contactmessage : {
"minLength": 25
}
});
在我的函数中,我想用字符串引用对象,该字符串是表单字段的输入id。
$.fn.formValidate = function(options) {
//...
var $this = $(this);
var id = $this.attr("id");
var length = options.id.minLength;
//...
}
此解决方案不起作用。
//修改
(function($, window, document, undefined ) {
$.fn.formValidate = function(options) {
/*
* Deafults values for form validation.
*/
var defaults = {
minLength: 5,
type : "text",
required : true
};
var methods = {
error : function(id) {
$(id).css("border", "1px solid red");
}
}
var settings = $.extend({}, defaults, options);
console.log(options);
this.children().each(function() {
var $this = $(this);
var tagName = $this[0].nodeName;
var inputType = $(this).attr("type");
var id = $this.attr("id");
console.log(id);
var property = options[id].minLength;
if (tagName == "INPUT") {
console.log("property: " + property);
console.log("--------------------------");
$(this).keyup(function() {
if ($this.val().length > 0) {
$this.css("border", "1px solid red");
} else {
$this.css("border", "1px solid #ccc");
}
});
}
});
return this;
};
}(jQuery));
答案 0 :(得分:6)
JavaScript objects also function as associative arrays.
表单options.id.minlength
访问名称为字符串文字“id”的属性。
相反,您需要表单options[id].minlength
来访问名称为变量id
的值的属性。
此外,id
可能没有您认为的值。由于$this
似乎是对 #contact-form 的引用,id
将具有值“contact-form”。如果要访问表单中的元素集合,请尝试$this.find('input,textarea,select')
。