博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
jQuery打造智能提示插件二(可编辑下拉框)
阅读量:6405 次
发布时间:2019-06-23

本文共 9359 字,大约阅读时间需要 31 分钟。

在上一篇  上改进,增加下拉按钮,修复点击下拉区域外不隐藏BUG

效果

下拉按钮素材:

js封装,注意红色部分为BUG修复,然后传入boxwidth不带px:

 

/*/// 
zhangs20140516*/(function($) {
var KEY = {            UP: 38,            DOWN: 40,            DEL: 46,            TAB: 9,            RETURN: 13, //回车            ESC: 27, COMMA: 188, SPACE: 32, //空格 PAGEUP: 33, PAGEDOWN: 34, BACKSPACE: 8 }; //默认属性 var defaults = { hidvalueid: "combox_hid_value", //保存选中元素值的input的ID boxwidth: 150, //文本框宽度,不带px,暂不支付百分比 url: "", //提交的页面/方法名,URL ="AsynHandler.ashx?ywtype=GetUserNameList" param: null//要发送到服务端参数格式,主要是要动态取值的参数:[{ keyname: "catalog", keyvalue: "txtCata" }, { keyname: "cba", keyvalue: "txtCata2"},……]  };
$.fn.combox = function(options) {        var options = $.extend(defaults, options); //将传入的参数进行合并        var hidvalue = $("#" + defaults.hidvalueid); //选中的值        //实现功能        return this.each(function() {            var cb = $(this); //输入框            cb.width(defaults.boxwidth - 15).css({ "cursor": "pointer", "float": "left" });            var id = cb.attr("id");            var searchresultdiv = $("
").insertAfter(cb); searchresultdiv.addClass("searchresult").width(defaults.boxwidth); //创建img var img = $("").insertAfter(cb); img.attr("src", 'src/images/select_arrow.gif'); // 默认箭头 defaults.boxwidth = defaults.boxwidth + "px"; //重新设置为px img.click(function() { //显示所有项 cb.val(" "); hidvalue.val(""); cb.keyup(); cb.focus(); }); //点击非弹出框区域隐藏弹出框 $(document).mousedown(function() { if (searchresultdiv.css("display") == "block") { var mx = event.clientX + $(document).scrollLeft(); //在iframe中滚动距离 var my = event.clientY + $(document).scrollTop(); //clientY相对文档的垂直座标 offsetY相对容器的垂直坐标 var x1 = searchresultdiv.offset().left; var y1 = searchresultdiv.offset().top; // 元素相对于document的上位移 var x2 = x1 + searchresultdiv.outerWidth(); var y2 = y1 + searchresultdiv.outerHeight(); if (mx < x1 || my < y1 || x2 < mx || y2 < my) { searchresultdiv.css("display", "none"); } } }); var strTmp = ""; if (defaults.url.indexOf("?") == -1) { strTmp += "?"; } else { strTmp += "&"; } cb.keyup(function(evt) { changeCoords(); //控制查询结果div坐标 var k = window.event ? evt.keyCode : evt.which; //输入框的id为txt_search,这里监听输入框的keyup事件 //不为空 && 不为上箭头或下箭头或回车 if (cb.val() != "" && k != KEY.UP && k != KEY.DOWN && k != KEY.RETURN) { var strTmp2 = ""; //拼接传入的参数 if (defaults.param != null) { $.each(defaults.param, function(i, item) { if (typeof item.keyvalue != "string") { alert("控件参数格式有错误,请检查"); return; } var value = $("#" + item.keyvalue).val(); if (value != "" || value != null) { strTmp2 += item.keyname + "=" + escape(value) + "&"; } }); } var sUrl = defaults.url + strTmp + strTmp2 + "key=" + escape(cb.val()) + "&rdnum=" + Math.random(); $.ajax({ type: 'GET', async: false, //同步执行,不然会有问题 dataType: "json", url: sUrl, //提交的页面/方法名 //data: , //参数(如果没有参数:null) contentType: "application/json; charset=utf-8", error: function(msg) {
//请求失败处理函数 alert("数据加载失败"); }, success: function(data) { //请求成功后处理函数。 showlist(data); } }); } else if (k == KEY.UP) {
//上箭头 $('#' + id + '_combox_table tr.combox-hover').prev().addClass("combox-hover").width(defaults.boxwidth); $('#' + id + '_combox_table tr.combox-hover').next().removeClass("combox-hover"); var tr_box_hover = $('#' + id + '_combox_table tr.combox-hover'); if (tr_box_hover.position() != undefined) { if (tr_box_hover.position().top < 0) { //向上滚动遮住的部分+本身的高度+padding高度 searchresultdiv.scrollTop(searchresultdiv.scrollTop() - (tr_box_hover.height() - tr_box_hover.position().top + 4)); } cb.val($('#' + id + '_combox_table tr.combox-hover').text()); hidvalue.val($('#' + id + '_combox_table tr.combox-hover td').attr("value")); } } else if (k == KEY.DOWN) {
//下箭头 if ($('#' + id + '_combox_table tr.combox-hover').size() == 0) { $('#' + id + '_combox_table tr.combox-line:first').addClass("combox-hover").width(defaults.boxwidth); //若无选中的,则选中第一个 } else { $('#' + id + '_combox_table tr.combox-hover').next().addClass("combox-hover").width(defaults.boxwidth); $('#' + id + '_combox_table tr.combox-hover').prev().removeClass("combox-hover"); var tr_box_hover = $('#' + id + '_combox_table tr.combox-hover'); if (tr_box_hover.position().top + tr_box_hover.height() > searchresultdiv.height()) { //向下滚动遮住的部分+本身高度+padding高度 searchresultdiv.scrollTop(searchresultdiv.scrollTop() + tr_box_hover.height() + (tr_box_hover.position().top + tr_box_hover.height()) - searchresultdiv.height() + 4); } } cb.val($('#' + id + '_combox_table tr.combox-hover').text()); hidvalue.val($('#' + id + '_combox_table tr.combox-hover td').attr("value")); } else if (k == KEY.RETURN) {
//回车 if ($('#' + id + '_combox_table tr.combox-hover').text() != "") { cb.val($('#' + id + '_combox_table tr.combox-hover').text()); hidvalue.val($('#' + id + '_combox_table tr.combox-hover td').attr("value")); } searchresultdiv.empty(); searchresultdiv.css("display", "none"); } else { searchresultdiv.empty(); hidvalue.val(""); //清空数据后也要清空值 searchresultdiv.css("display", "none"); } }); // searchresultdiv.bind("mouseleave", function() {
// searchresultdiv.empty(); // searchresultdiv.css("display", "none"); // }); //根据data生成下拉列表 function showlist(data) { if (data == "false") { return; } if (data.length > 0) { var layer = ""; layer = "
"; //layer += "
"; $.each(data, function(idx, item) { layer += "
"; }); layer += "
请选择
" + item.Name + "
"; //将结果添加到div中 searchresultdiv.empty(); searchresultdiv.append(layer); //$(".combox-line:first").addClass("combox-hover"); //初始化时不能显示,此时回车不会选中第一个 searchresultdiv.css("display", ""); //鼠标移动事件 $(".combox-line").hover(function() { $(".combox-line").removeClass("combox-hover"); $(this).addClass("combox-hover").width(defaults.boxwidth); }, function() { $(this).removeClass("combox-hover"); //searchresultdiv.css("display", "none"); }); //鼠标点击事件 $(".combox-line").click(function() { cb.val($(this).text()); hidvalue.val($(this).children()[0].value); searchresultdiv.css("display", "none"); }); } else { searchresultdiv.empty(); searchresultdiv.css("display", "none"); } } //设置查询结果div坐标 function changeCoords() { var left = cb.position().left; //获取距离最左端的距离,像素,整型 var top = cb.position().top + 20; ; //获取距离最顶端的距离,像素,整型(20为搜索输入框的高度) searchresultdiv.css("left", left + "px"); //重新定义CSS属性 searchresultdiv.css("top", top + "px"); //同上 } return cb; }); };})(jQuery);

 

前台注意boxwidth不带单位:

后台不变

 

 

转载地址:http://mjtea.baihongyu.com/

你可能感兴趣的文章
SharePoint 2013 页面访问,Url中间多一段"_layouts/15/start.aspx#"
查看>>
精品欣赏:30个养眼的精美自然风光的网站设计《上篇》
查看>>
知方可补不足~row_number,rank,dense_rank,ntile排名函数的用法
查看>>
向大家介绍15个漂亮的Ubuntu GDM主题
查看>>
中国的程序员是世界上最好的程序员。他们不计报酬,没日没夜地工作。没有女朋友,没有节假日,可能几年后他们一无所有。他们仍在加班。...
查看>>
JavaScript:异步 setTimeout
查看>>
DIV+CSS圆角边框
查看>>
Mybatis的ResultMap的使用
查看>>
精选30道Java笔试题解答
查看>>
linux shell 流程控制(条件if,循环【for,while】,选择【case】语句实例 --转载
查看>>
IE回车的一个怪异行为
查看>>
Linux shell join命令详解
查看>>
SharePoint如何配置Ipad跳转等问题
查看>>
ASP.NET MVC 初体验
查看>>
js library
查看>>
mysql导出数据库数据及表结构
查看>>
C#设计模式——抽象工厂
查看>>
原创:vsphere概念深入系列四:Nic Teaming若干问题
查看>>
Encapsulating Data 数据封装
查看>>
编程之美 海量数据寻找 K 大数
查看>>