付费节点推荐
免费节点
节点使用教程
$("#ks_input").bind("input propertychange",function(event){
var val = $(this).val();
console.log(val);
if(val == ""){
$("#form-group .radio-inline").children('').css('color','');
}else{
$("#form-group .radio-inline").each(function(){
var that = $(this);
if($(this).attr('nametag').indexOf(val) >= 0){
that.children('').css('color','red');
}else{
that.children('').css('color','');
}
});
}
});
未经允许不得转载:Bcoder资源网 » jquery监控输入框输入模糊查询
评论前必须登录!
登陆 注册