首页 > 代码库 > Jquery——选择器2
Jquery——选择器2
1 $("ul li:eq(3)")
列表中等于3的元素,0开始(第四个)
1 $("ul li:lt(2)")
列表中小于2的元素,0开始
1 $("ul li:gt(2)")
列表中大于2的元素,0开始。
1 $("[name^=‘user‘]")
name中以user开头的
1 $("[name$=‘ge‘]")
name中以ge结尾的
1 $("[name*=‘na‘]")
name中包含na的
1 $("[name*=‘name‘][id *= ‘username‘]")
name中包含name,且id中包含username的
1 $("input[reg]").each(function(){ 2 var val = $(this).val(); 3 var tip = $(this).attr("tip"); 4 var reg = $(this).attr("reg"); 5 var regexp = new RegExp(reg); 6 if(!regexp.test(val)){ 7 alert(tip) 8 } 9 }) 10 11 12 <input type = "text" name = "username" id = "username" reg = "^\w{1,12}$" tip = "Name Input format does not conform to the requirements"/> 13 <input type = "password" name = "password" id = "password" reg = "^\w{1,12}$" tip = "PassWord Input format does not conform to the requirements"/> 14 15 <input type = "text" name = "email" id = "email" reg = "^\w*\@\w*\.\w*$" tip = "Email Input format does not conform to the requirements"/>
自定义选择器,选择input中含有reg属性的。
利用正则表达式进行条件筛选。对input中的val进行判断。
Jquery——选择器2
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。