一款简洁美观的jQuery手机端个人信息填写表单页面代码,用户个人资料完善表单代码下载。
1
js代码 [removed] $('[name="nice-select"]').click(function(e){ $('[name="nice-select"]').find('ul').hide(); $(this).find('ul').show(); e.stopPropagation(); }); $('[name="nice-select"] li').hover(function(e){ $(this).toggleClass('on'); e.stopPropagation(); }); $('[name="nice-select"] li').click(function(e){ var val = $(this).text(); $(this).parents('[name="nice-select"]').find('input').val(val); $('[name="nice-select"] ul').hide(); e.stopPropagation(); }); $(document).click(function(){ $('[name="nice-select"] ul').hide(); }); [removed]
1
js代码 [removed] $('[name="nice-select"]').click(function(e){ $('[name="nice-select"]').find('ul').hide(); $(this).find('ul').show(); e.stopPropagation(); }); $('[name="nice-select"] li').hover(function(e){ $(this).toggleClass('on'); e.stopPropagation(); }); $('[name="nice-select"] li').click(function(e){ var val = $(this).text(); $(this).parents('[name="nice-select"]').find('input').val(val); $('[name="nice-select"] ul').hide(); e.stopPropagation(); }); $(document).click(function(){ $('[name="nice-select"] ul').hide(); }); [removed] 一款简洁美观的jQuery手机端个人信息填写表单页面代码,用户个人资料完善表单代码下载。
1