ios下长按选中

ios下长按选中,用一下两个class即可,给需要长按区域的父级加no-select,给需要选中的子级加text-select

.no-select{
    -webkit-user-select:none;
    -moz-user-select:none;
    -o-user-select:none;
    user-select:none;
}
.text-select{
    -webkit-user-select:text;
    -moz-user-select:text;
    -o-user-select:text;
    user-select:text;
}

你可能感兴趣的:(ios下长按选中)