1
2
3
4
5
|
body.disable-default-action
{
-webkit-touch-callout:
none
;
-webkit-user-select:
none
;
}
|
1
2
3
|
<
body
class
=
"disable-default-action"
>
page content….
</
body
>
|
1
2
3
4
|
*:not(input,textarea) {
-webkit-touch-callout:
none
;
-webkit-user-select:
none
;
}
|
1
|
<
a
href
=
"http://www.baidu.com"
style
=
"-webkit-touch-callout:none"
>
|
1
2
3
4
5
6
7
|
- (
void
)webViewDidFinishLoad:(UIWebView *)webView {
// 禁用用戶選擇
[webView stringByEvaluatingJavaScriptFromString:@
"document.documentElement.style.webkitUserSelect='none';"
];
// 禁用長按彈出框
[webView stringByEvaluatingJavaScriptFromString:@
"document.documentElement.style.webkitTouchCallout='none';"
];
}
|