我一直在尝试按类型查找元素,例如电台,文字等
我试过Jquery的这段代码:
$j("input[type^='text']").each(function(){
alert($j(this).attr("id"));
});
上面的代码工作正常,但我想找到这样的:
$j("input[type='text'|'radio']").each(function(){
alert($j(this).attr("id"));
});
有可能吗?我被困了!
答案 0 :(得分:1)
您需要使用Multiple Selector:
$j("input[type='text'],input[type='radio']").each(function(){
alert($j(this).attr("id"));
});
您还可以使用:text
和:radio
选择器:
$j("input:text,input:radio").each(function(){
alert($j(this).attr("id"));
});