iOS - 使用WKWebView時OC調JS的user-select屬性控制使用者操作

來源:互聯網
上載者:User

標籤:prefix   call   specified   限制   user   out   ext   element   屬性的屬性   

 

// 頁面載入完成之後調用

- (void)webView:(WKWebView *)webView didFinishNavigation:(null_unspecified WKNavigation *)navigation {

    // 不執行前段介面彈出列表的JS代碼

    [webView evaluateJavaScript:@"document.documentElement.style.webkitTouchCallout=‘none‘;" completionHandler:nil];

    [webView evaluateJavaScript:@"document.documentElement.style.webkitUserSelect=‘none‘" completionHandler:nil];

   

}

 

user-select屬性用來禁止使用者用滑鼠在頁面上選中文字、圖片等,也就是,讓頁面內容不可選。也可以只允許使用者選中文字,或者全部都放開,使用者可以同時選中文字、還包括文本裡的圖片、視頻等其它東西。user-select屬性的作用是元素層級的,它不僅可以作用整個頁面,也可以只在指定的元素和其子項目上生效。

目前使用各種瀏覽器引擎首碼,它的作用還是能發揮的不錯的。

我們來先看看user-select屬性的文法:

user-select: none;
user-select: auto;
user-select: text;
user-select: contain;
user-select: all;
//Firefox瀏覽器
-moz-user-select: none;
-moz-user-select: text;
-moz-user-select: all;
//Google瀏覽器
-webkit-user-select: none;
-webkit-user-select: text;
-webkit-user-select: all;
//IE
-ms-user-select: none;
-ms-user-select: text;
-ms-user-select: all;
-ms-user-select: element;

 

 

下面是“user-select”屬性的屬性值介紹:

 

none
禁止使用者選中
text
對使用者的選擇沒有限制
all
目標元素將整體被選中,也就是說不能只選中一部分,在你用滑鼠選中部分文字時,瀏覽器會自動選中整個元素裡的內容。

iOS - 使用WKWebView時OC調JS的user-select屬性控制使用者操作

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.