上传者: 39840515
|
上传时间: 2022-05-17 10:31:08
|
文件大小: 37KB
|
文件类型: ZIP
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]