码迷,mamicode.com
首页 > Web开发 > 详细

input jquery 操作

时间:2014-11-19 17:41:14      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   os   sp   on   

本文章主要为了总结开发常用的input等常见html的jquery操作,不是为了展示自己多么菜,只为了积累知识,勿喷!!!不断更新中

bubuko.com,布布扣
$(function () {
            $("input[name=T]").eq(0).attr("checked", "checked"); //默认第一个选中
            $("input[name=T]").each(function () {

                $(this).click(function () {
                    $("input[name=T]").removeAttr("checked"); //不被选中的清除checked属性
                   $(this).attr("checked", "checked"); 
                }); 
               
       });

获得 选中的val

 $(“input[name=T][checked]").val();
Radio

 

input jquery 操作

标签:style   blog   http   io   ar   color   os   sp   on   

原文地址:http://www.cnblogs.com/DDSkay/p/4108598.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!