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

css 常用

时间:2015-01-27 12:39:06      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:

一、:enabled 标签选择器 为所有启用的标签 赋相应属性

 jQuery("input:enabled").each(function () {
                    this.checked = true;
                });

二、.map 构建表单中所有值的列表

var values = jQuery(‘input:checkbox:checked.choose‘).map(function () {
                return this.value;
            }).get();
            var orderIds = values.join(‘,‘);

官方案例$("p").append( $("input").map(function(){ return $(this).val(); }).get().join(", ") );

$(‘:checkbox‘).map(function() {
  return this.id;
}).get().join(‘,‘);

 

css 常用

标签:

原文地址:http://www.cnblogs.com/eric-gms/p/4252365.html

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