function ShowTextBox(cb)
{
var tr = $(cb).parents("tr:first"); // 查找当前元素所在的行
var ddl = $('.tbWork', tr); // 找到当前行里的某元素
if(cb.checked)
ddl.show();
else
ddl.hide();
}
function InitCheckBox()
{
var cbWork = $('.cbWork input');
cbWork.each(function (i, n) { ShowTextBox(n); }); // 遍历JQuery元素的两种方法
//$.each(cbWork, function (i, n) { ShowTextBox(n); });
}
$(InitCheckBox);
浙公网安备 33010602011771号