用户注册



邮箱:

密码:

用户登录


邮箱:

密码:
记住登录一个月忘记密码?

发表随想


还能输入:200字
云代码 - javascript代码库

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

2013-03-15 作者: 小蜜锋举报

[javascript]代码库

//设置单选下拉框选中
$("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
});


网友评论    (发表评论)


发表评论:

评论须知:

  • 1、评论每次加2分,每天上限为30;
  • 2、请文明用语,共同创建干净的技术交流环境;
  • 3、若被发现提交非法信息,评论将会被删除,并且给予扣分处理,严重者给予封号处理;
  • 4、请勿发布广告信息或其他无关评论,否则将会删除评论并扣分,严重者给予封号处理。


扫码下载

加载中,请稍后...

输入口令后可复制整站源码

加载中,请稍后...