JQuery选择器的问题
$("selectoption[selected='selected']")$("selectoption:selected")这两个选择器有什么不同的地方,为什么第一种...
$("select option[selected='selected']")$("select option:selected")这两个选择器有什么不同的地方,为什么第一种写法在执行的时候无效。
是不是关于JQuery加载顺序的问题,希望能有大神路过,拜托拜托 展开
是不是关于JQuery加载顺序的问题,希望能有大神路过,拜托拜托 展开
1个回答
展开全部
$("select option[selected='selected']")写法是当你的select的子option的属性有selected="selected"才能触发。有些是直接selected就能触发选中了,看例子:
1、<select><option selected="selected"></option></select>
2、<select><option selected></option></select>
效果是一样的,但是使用$("select option[selected='selected']")不一定能两个都触发。所以最好使用$("select option:selected")这种jq内置的获取选中的方式。
1、<select><option selected="selected"></option></select>
2、<select><option selected></option></select>
效果是一样的,但是使用$("select option[selected='selected']")不一定能两个都触发。所以最好使用$("select option:selected")这种jq内置的获取选中的方式。
追问
为什么不一定两个都能触发?你的select的子option的属性有selected="selected"才能触发,那我在点击option的时候没有给option增加selected="selected"属性吗?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询