function initListItemClickEvent(id) {
$("#" + id + "_select ul li").click(function() {
$("#" + id).find("option").eq($(this).index()).attr("selected", "selected").siblings("option").removeAttr("selected");
$("#" + id + "_current_select .current_select_text").html($(this).html());
hideSelect(id);
$("#" + id).val($(this).html());
console.log($("#" + id))
$("#" + id).change();
});
}
不兼容ie