亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

web開發中移動端怎么弄選中實現高亮全選文本事件

發布時間:2020-10-26 09:38:18 來源:億速云 閱讀:360 作者:小新 欄目:web開發

小編給大家分享一下web開發中移動端怎么弄選中實現高亮全選文本事件,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

最近需要給HTML5的WebAPP在頁面上實現一個復制功能:用戶點擊長按文本會全選文字并彈出系統“復制”菜單,用戶可以點擊“復制”進行復制操作,然后粘貼到AppStore搜索對應的應用。之所以不是采用鏈接形式直接跳轉到AppStore對應應用是為了通過用戶的主動輸入關鍵詞搜索給推廣的企業App增加權重。所以這一個“復制”功能對用戶的體驗至關重要。

嘗試了一些做法,在安卓/iOS平臺上的兼容性都不是很好。在微信瀏覽器內是很容易實現長按文本激發系統菜單,高亮全選文本內容的。但是在其他瀏覽器的表現就不是很一致了。包括模擬focus input,JavaScript Selection, 使用a標簽嘗試激活系統菜單。這些方法都存在兼容的缺陷。

1)雖然使用帶有href屬性的a標簽在uc瀏覽器和百度瀏覽器上長按文本會出現“自由復制”/“選擇文本”菜單,選擇該菜單后會出現“全選/復制”的菜單,但是在一些安卓手機的系統瀏覽器和iPhone中卻被視為純鏈接,只彈出“復制鏈接”,沒有“復制文本”菜單。況且即使只考慮少部分瀏覽器可行,這樣也給用戶操作多了一步,增加了復雜度。所以該方案不可取。

2)借助selection和range的方法需要考慮到不同瀏覽器的兼容性,代碼如下:

function selectText(element) {  
  var doc = document,  
      text = docgetElementById(element),  
      range,  
      selection;  
  
  if (docbodycreateTextRange) {  
      range = documentbodycreateTextRange();  
      rangemoveToElementText(text);  
      rangeselect();  
  } else if (windowgetSelection) {  
      selection = windowgetSelection();          
      range = documentcreateRange();  
      rangeselectNodeContents(text);  
      selectionremoveAllRanges();  
      selectionaddRange(range);  
      /*if(selectionsetBaseAndExtent){ 
          selectionsetBaseAndExtent(text, 0, text, 1); 
      }*/  
  }else{  
      alert("none");  
  }  
}

遺憾的是在iphone Safari上依然無法通過點擊或長按高亮選中所有文本(既然也支持window.getSelection,為何在Safari瀏覽器addRange操作后文本不能默認選中,知道原因的請留言指教)。因此,該方式存在缺陷。主動選中文本區域的方法后面后附上。

3)iPhone用戶可能知道,長按某一文本選區內文字周圍的空白區域,Safari會自動將該選區內的文本高亮全選(目標文本需要放在獨立的p塊級容器內)。根據這一特性,用CSS margin修飾一下,利用這個特點,正好可以解決上述第二種方法在ios設備的不兼容。經過測試,無論安卓和ios平臺,一般手機自帶的系統瀏覽器都是可以兼容的。至于uc瀏覽器、百度瀏覽器等其他廠家的移動端產品,由于有不同的機制,只能使用這些瀏覽器菜單提供的“自由復制”功能。

所以,我綜合了第二種和第三種方式,使用jQuery mobile中的taphold事件來模擬longtap操作激發手機系統的復制菜單,這樣基本上可以做到在所有移動設備瀏覽器上都能實現長按文本區域來高亮選中所有文本內容。再提一句,taphold的兼容bug這里就不詳細附解決方法了,如果你的項目要求精益求精,你可以自行搜索解決方案。

下面列出我的解決方案。具體代碼如下:

HTML代碼:

<p class=" para requirement">  
    <p class="tips tips-t">  
        1、必須首次下載才生效<br/>  
        2、不能從排行榜下載哦  
    </p>  
    <p class="cparea">  
        <p class="kwd" id="kwd"><span>三國艷義手機優化大師</span></p>                   
    </p>  
    <p class="cparea">  
        <span class="kdes"><b>★</b>長按虛線框,拷貝關鍵詞</span>  
    </p>  
    <a href="https://itunesapplecom/cn/" data-role="button" class="downlink">去AppStore搜索下載</a>  
</p>

JavaScript代碼:

 <script type="text/javascript">  
  
$("#kwd")bind("taphold", function(){ //不支持iPhone/iTouch/iPad Safari  
    var doc = document,   
        text = docgetElementById("kwd"),  
        range,   
        selection;  
    if (docbodycreateTextRange) {  
        range = documentbodycreateTextRange();  
        rangemoveToElementText(text);  
        rangeselect();  
    } else if (windowgetSelection) {  
        selection = windowgetSelection();          
        range = documentcreateRange();  
        rangeselectNodeContents(text);  
        selectionremoveAllRanges();  
        selectionaddRange(range);   
    }else{  
        alert("瀏覽器不支持長按復制功能");  
    }         
});  
  
</script>

關鍵的CSS代碼:

cparea{  
    text-align: center;  
    font-family: Microsoft Yahei;  
    margin: -2em 0 0;  
}  
kwd{  
    display: inline-block;  
    color: #272727;  
    background-color: #fff;  
    font-size: 1875em;  
    font-size: 1875em;  
    padding: 75em 1em;  
    border: 1px dashed #e60012;  
    -webkit-user-select:element;   
    margin: 2em;  
}  
kwd span{  
    display: block;   
    border: 1px solid #fff;  
}  
kdes{  
    display: inline-block;  
    color: #212121;  
    font-size: 875em;  
    padding-top: 0;  
}  
kdes b{  
    color: #ed5353;  
    font-size: 25em;  
    padding-right: 1em;  
}

說明:這里的margin:2em正是為了實現Safari瀏覽器上的長按全選功能,為了尊重還原設計稿效果,父容器.cparea又使用了負邊距來抵消這個2em的外邊距。最終,不僅視覺上和設計圖保持了一致,也實現了長按全選激發系統菜單。

最后再補充一下支持Safari下的完整方法:

$("#kwd").bind("taphold", function(){  
    var doc = document,   
        text = docgetElementById("kwd"),  
        range,   
        selection;  
    if (docbodycreateTextRange) { //IE  
        range = documentbodycreateTextRange();  
        rangemoveToElementText(text);  
        rangeselect();  
  
    } else if (windowgetSelection) {   //FF CH SF  
        selection = windowgetSelection();          
        range = documentcreateRange();  
        rangeselectNodeContents(text);  
        selectionremoveAllRanges();  
        selectionaddRange(range);  
  
        //測試  
        consolelog(texttextContent);  
        textinnerText && consolelog(textinnerText);  //FireFox不支持innerText  
        consolelog(texttextContentlength);  
        textinnerText && consolelog(textinnerTextlength);   //在Chrome下長度比IE/FF下多1  
        consolelog(textfirstChildtextContentlength);  
        textinnerText && consolelog(textfirstChildinnerTextlength);  
        consolelog(textfirstChildinnerHTMLlength);  
  
        //注意IE9-不支持textContent  
        makeSelection(0, textfirstChildtextContentlength, 0, textfirstChild);  
        /* 
        if(selectionsetBaseAndExtent){ 
            selectionselectAllChildren(text); 
            selectionsetBaseAndExtent(text, 0, text, 4); 
        } 
        */  
    }else{  
        alert("瀏覽器不支持長按復制功能");  
    }  
  
});  
function makeSelection(start, end, child, parent) {  
    var range = documentcreateRange();  
    //consolelog(parentchildNodes[child]);  
    rangesetStart(parentchildNodes[child], start);  
    rangesetEnd(parentchildNodes[child], end);  
  
    var sel = windowgetSelection();  
    selremoveAllRanges();  
    seladdRange(range);   
}

看完了這篇文章,相信你對web開發中移動端怎么弄選中實現高亮全選文本事件有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

web
AI

凌源市| 金塔县| 小金县| 湟中县| 新疆| 明溪县| 江都市| 开鲁县| 集安市| 绥江县| 巴东县| 鹿泉市| 南康市| 青铜峡市| 龙川县| 恭城| 鹤峰县| 施甸县| 灌南县| 淅川县| 新田县| 麟游县| 称多县| 吴旗县| 桑日县| 黄平县| 新田县| 平舆县| 竹溪县| 体育| 博湖县| 从化市| 临高县| 千阳县| 凤山县| 确山县| 凉城县| 嵩明县| 新沂市| 肃北| 南丹县|