//html
<input type="text" id="edu" readonly="readonly" value="" class="re_ipt" placeholder="点击填写" />
//js
$('#edu').live('click', function(e) {
$(this).Singleoption({
data: ["一年", "两年", "三年", "四年", "五年", "六年", "七年", "七年以上", "其他"],
direction:"bottom"
});
$(document).one("click", function() {
$(".re_Popup").remove();
});
// e.preventDefault();
此处应该是
e.stopPropagation(); //阻止事件冒泡
});
相关分类