1,前端点击,阻止鼠标选中文字:-webkit-user-select: none;
2,label 事件冒泡阻止:
if($(event.target).is('input')){ //阻止事件冒泡 return; }