bug描述:使用user-select做復制粘貼功能,在ios手機上無法正常輸入和刪除,出現(xiàn)光標失蹤等現(xiàn)象
解決問題關(guān)鍵在于明確可復制粘貼區(qū)域
以#talkCon為例,由于復制內(nèi)容可能帶有標簽和樣式,因此需要同時設(shè)置元素下子節(jié)點(#talkCon?* )
正確代碼:
*{
??-webkit-touch-callout:?none;
??-webkit-user-select:?none;
??-khtml-user-select:?none;
??-moz-user-select:none;
??-ms-user-select:none;
??user-select:none
}
input,?textarea,?#talkCon,?#talkCon?*,?.content?*{
??-webkit-user-select:?auto;
??user-select:?auto;
}