如何检测对象的类型是“复选框”或其他东西。
问问题
2154 次
4 回答
5
您可以使用is
方法:
if ($(this).is(":checkbox")) {
// is checkbox
} else {
// not checkbox
}
于 2012-05-22T10:36:59.997 回答
1
您可以检查其类型属性。使用 JQuery:
if($('input').attr('type') == 'checkbox') {
// do if checkbox
} else {
// do if not checkbox
}
于 2012-05-22T10:37:28.153 回答
1
$(element).attr('type') == 'checkbox'
于 2012-05-22T10:38:40.760 回答
1
您可以使用:
$("input[type='checkbox']").whatever();
于 2012-05-22T10:38:46.470 回答