jQuery 设置多选框 单选框 下拉框选中和取消选中(selected)

前端之家收集整理的这篇文章主要介绍了jQuery 设置多选框 单选框 下拉框选中和取消选中(selected)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

//设置单选下拉框选中
$("input:eq(0)").click(function () {
    $("#single option").removeAttr("selected"); //移除属性selected
    $("#single option:eq(1)").attr("selected",true); //设置属性selected
});
//设置多选下拉框选中
$("input:eq(1)").click(function () {
    $("#multiple option").removeAttr("selected"); //移除属性selected
    $("#multiple option:eq(2)").attr("selected",true); //设置属性selected
    $("#multiple option:eq(3)").attr("selected",true); //设置属性selected
});
//设置单选框和多选框选中
$("input:eq(2)").click(function () {
    $(":checkBox").removeAttr("checked"); //移除属性checked
    $(":radio").removeAttr("checked"); //移除属性checked
    $("[value=check2]:checkBox").attr("checked",true); //设置属性checked
    $("[value=check3]:checkBox").attr("checked",true); //设置属性checked
    $("[value=radio2]:radio").attr("checked",true); //设置属性checked
});

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

猜你在找的jQuery相关文章