$(this).siblings().find(".select-custom-options").hide();
});
$(document).click(function (event) {
var eo = $(event.target);
if ($(".select-box-custom").is(":visible") && eo.attr("class") != "select-custom-options" && !eo.parent(".select-custom-options").length)
$('.select-custom-options').hide();
});
/*赋值给文本框*/
$(".select-custom-option").click(function () {
var text = $(this).text();
var value = $(this).attr("data-attr");
$(this).parent().siblings(".select-custom-txt").text(text);
$(this).parent().siblings(".select-custom-value").val(text);
})
});