$(".selector").val("pxx")
2、设置text为pxx的项选中
$(".selector").find("option[text='pxx']").attr("selected",true)
这里有一个中括号的用法,中括号里的等号的前面是属性名称,不用加引号。很多时候,中括号的运用可以使得逻辑变得很简单。
3、获取当前选中项的value
$(".selector").val()
4、获取当前选中项的text
使用select标签的属性 selected。比如:$('.select').find('option.active').attr('selected','selected')
需要准备的材料分别有:电脑、chrome浏览器、html编辑器。
1、首先,打开html编辑器,新建一个html文件,例如:index.html,并引入jquery。
2、在index.html中的<script>标签,输入jquery代码:
$('select option').eq(1).attr('selected', true)
3、浏览器运行index.html页面,此时通过jquery设置了select的第二个option被选中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)