继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

jquery搜索下拉提示框/登陆账号下拉提示框

所谓伊人_在水一方
关注TA
已关注
手记 273
粉丝 23
获赞 169


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><style type="text/css">body{font-size:12px;}.selectItemcont{padding:8px;}#selectItem{border:1px solid #f00;background:#FFF;position:absolute;top:0px;left:center;overflow:hidden;width:240px;z-index:1000;}.selectItemhidden{display:none;}</style><script type="text/javascript" src="引入jquery库"></script><script>(function($){    $.fn.bgIframe=$.fn.bgiframe = function(s){        return this;    };})(jQuery);jQuery.fn.selectCity = function(targetId) {    var _seft = this;    var targetId = $(targetId);    this.click(function(){        var A_top = $(this).offset().top + $(this).outerHeight(true);  //  1        var A_left =  $(this).offset().left;        targetId.bgiframe();        targetId.show().css({"position":"absolute","top":A_top+"px" ,"left":A_left+"px"});    });    targetId.find("#selectSub :checkbox").click(function(){          targetId.find(":checkbox").attr("checked",false);        $(this).attr("checked",true);        _seft.val( $(this).val() );        targetId.hide();    });    $(document).click(function(event){        if(event.target.id!=_seft.selector.substring(1)){            targetId.hide();        }    });    targetId.click(function(e){        e.stopPropagation(); //  2    });    return this;}$(document).ready(function(){    $("#address").selectCity("#selectItem");}) </script></head><body><input type="text" name="address" id="address" ><div id="selectItem" class="selectItemhidden">    <div id="selectItemCount" class="selectItemcont">        <div id="selectSub">            <input type="checkbox" name="cr01"  id="cr01" value="搜索记录1"/><label for="cr01">搜索记录1</label><br />            <input type="checkbox" name="cr02"  id="cr02" value="搜索记录2"/><label for="cr02">搜索记录2</label><br />            <input type="checkbox" name="cr03"  id="cr03" value="登陆账号3"/><label for="cr03">登陆账号3</label><br />            <input type="checkbox" name="cr04"  id="cr04" value="登陆账号4"/><label for="cr04">登陆账号4</label><br />            清除历史记录...        </div>    </div></div></body></html>


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP