美文网首页
常用jQuery操作表单元素的方法

常用jQuery操作表单元素的方法

作者: _emo_ | 来源:发表于2019-05-06 09:33 被阅读0次

    声明:只记录确认可用的,不全。

    一、Radio操作
    获取 Radio 选定值
    $('input[name=xxx]:checked').val();
    
    选定值为 0 的 Radio 
    $("input[name=xxx][value='0']").attr("checked",true)
    
    取消选定 Radio 
    方式一
    $("input[name=xxx][value='0']").attr("checked",false);
    方式二
    $("input[name=xxx]:checked").attr('checked',false);
    
    二、select 操作
    获取选定的option的值
    $("#id").val(); 
    
    取消select 的选定
    $('#id').val('');
    
    三、Button 操作
    $('#id').click();
    

    相关文章

      网友评论

          本文标题:常用jQuery操作表单元素的方法

          本文链接:https://www.haomeiwen.com/subject/bjbloqtx.html