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

jQuery Select 自动选择默认值

时间:2014-12-17 16:03:45      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:ar   io   os   sp   on   bs   cti   ef   as   

//
//
// the Select target Auto Select value extension plugin
// 
// -------------------------------------------------------------------------- //
(function ($) {
$.extend($.fn, {

//
AutoSelect: function (options) {

// default options of plugin
var defaults = {
atr: "val",
filter: "select"
}

// deep copy $.extend(isDeepCopy,default_src,ext1,ext2,ext3,ext4,......);
var new_options = $.extend(true, defaults, options);

var $this = $(this);
$this.each(function () {
var $t = $(this);
// alert($t.prop("tagName".toLocaleUpperCase()));
if (new_options.filter.toLocaleUpperCase() != $t.prop("tagName")) {
$t.val($t.attr(defaults.atr));
}
})
}
});
})(jQuery);

 

jQuery Select 自动选择默认值

标签:ar   io   os   sp   on   bs   cti   ef   as   

原文地址:http://www.cnblogs.com/guizhouhehai/p/4169551.html

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