標籤: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屬性控制使用者操作