我正在使用jquery 1.3.2但我已更新到最新版本:
以下版本不适用于最新版本的jquery - 这里出了什么问题?
var input = $(this);
// get the associated label using the input's id
var label = $('label[for=' + input.attr('id') + ']');
//get type, for classname suffix
var inputType = (input.is('[type=checkbox]')) ? 'checkbox' : 'radio';
// wrap the input + label in a div
$('<div class="custom-' + inputType + '"></div>').insertBefore(input).append(input, label);
// find all inputs in this set using the shared name attribute
var allInputs = $('input[name=' + input.attr('name') + ']');
答案 0 :(得分:11)
尝试将最后一行更改为:
var allInputs = $('input[name="' + input.attr('name') + '"]');