一个简单的jquery的多选下拉框分享
今天做的项目要用到多选的下拉框,开始想在网上找一个插件用用,可是,网上的插件看起来都比较杂乱,我参考了网上的一些插件,自己用jquery写了一个多选下拉框,js写得比较简洁。代码如下。
js代码
. 代码如下:
(function(){
$.fn.extend({
checks_select: function(options){
jq_checks_select = null;
$(this).click(function(e){
jq_check = $(this);
//jq_check.attr("class", "");
if (jq_checks_select == null) {
jq_checks_select = $("<p class='checks_p_select'></p>").insertafter(jq_check);
$.each(options, function(i, n){
check_p=$("<p><input type='checkbox' value='" + n + "'>" + n + "</p>").appendto(jq_checks_select);
check_box=check_p.children();
check_box.click(function(e){
//jq_check.attr("value",$(this).attr("value") );
temp="";
$("input:checked").each(function(i){
if(i==0){
temp=$(this).attr("value");
}else{
temp+="、"+$(this).attr("value");
}
});
jq_check.attr("value",temp);
e.stoppropagation();
});
});
}else{
jq_checks_select.toggle();
}
e.stoppropagation();
});
$(document).click(function () {
jq_checks_select.hide();
});
//$(this).blur(function(){
//jq_checks_select.css("visibility","hidden");
//alert();
//});
}
})
})(jquery);
html
. 代码如下:
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js">
</script>
<script type="text/javascript" src="js/jquery2.1.js">
</script>
<script type="text/javascript" src="js/jquery-mah-ui.js">
</script>
<script language="javascript">
$(document).ready(function(){
var options = {
1: "第一个选择项",
2: "第二个选择项",
3: "第三个选择项",
4: "第四个选择项",
5: "第五个选择项",
6: "第六个选择项"
};
$("#test_p").checks_select(options);
});
</script>
<style>
.checks_p_select {
width: 150px;
background-color: #e9fbfb;
border: 1px solid #18cbcd;
font-family: 'verdana', '宋体';
font-size: 12px;
position:absolute;
left:2px;
top:25px;
}
</style>
</head>
<body>
<p style="position:relative;">
<input type="text" id="test_p"/>
</p>
</body>
</html>
需要jquery类库
上一篇: JQuery实现绚丽的横向下拉菜单
下一篇: jQuery中的$.ajax()方法应用