禁止长按

-moz-user-select: none; /*火狐*/
-webkit-user-select: none; /*webkit浏览器*/
-ms-user-select: none; /*IE10*/
-khtml-user-select: none; /*早期浏览器*/
user-select: none;

时间: 2024-11-07 08:38:15

禁止长按的相关文章

页面禁止长按选择文字

//长按禁止选择文字* { -webkit-touch-callout:none; -webkit-user-select:none; -khtml-user-select:none; -moz-user-select:none; -ms-user-select:none; user-select:none; } 如果是想禁用长按弹出菜单, 用 js node.addEventListener('contextmenu', function(e){ e.preventDefault(); });

移动web端禁止长按a标签,弹出“在浏览器中打开”菜单

长按press事件会导致浏览器弹出菜单: 方法一: 苹果禁止: -webkit-touch-callout: none; 安卓的不行.禁止弹出只能用js来控制: $('a').ontouchstart = function(e) { e.preventDefault(); }; 方法二: 将<a>标签换成其他的标签,如<button>,<div>,<p>.然后绑定touchstart,click事件js跳转. <div class="jump

h5页面在ios机上禁止长按复制

(注意,增加之后需要对input的另外设置,不然输入框无法输入)场景:H5出现一个按钮需要长按几秒展示动画的,如:skcs.net-tactic.com/wap/peace/index,这时就需要用到禁止苹果的 ios机默认存在长按复制选择,用以下代码取消: *{ -webkit-touch-callout:none; /*系统默认菜单被禁用*/ -webkit-user-select:none; /*webkit浏览器*/ -khtml-user-select:none; /*早期浏览器*/

h5页面禁止长按出现菜单

最近在做项目中,发现在移动端长按会出现复制黏贴菜单按钮,经过查询资料,解决了此问题: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 苹果端可以css解决:*{-webkit-touch-callout: none;} ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 安卓端需要添加js解决: window.ontouchstart = function(e) { e.preventDefault(); };

禁止长按微信页面出现默认选择弹框

长按微信中打开的h5页面默认会有弹框,如图: 如果我们不想出现这个,可以加: document.oncontextmenu=function(e){ e.preventDefault(); } oncontextmenu 事件在元素中用户右击鼠标时触发并打开上下文菜单. 原文地址:https://www.cnblogs.com/leaf930814/p/8497248.html

css 禁止长按保存功能

*{-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;} 或者指定某个元素添加#div{-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}

UIWebView取消长按放大(用于长按识别二维码)

禁用长按UIWebView时放大镜及选择功能: //通过js调用 - (void)webViewDidFinishLoad:(UIWebView*)webView { // Disable user selection [webView stringByEvaluatingJavaScriptFromString:@"document.documentElement.style.webkitUserSelect='none';"]; // Disable callout,禁止长按链接弹

UIWebView禁用长按弹出copy选择框

本文参考http://bbs.9ria.com/thread-227539-1-1.html  感谢hbnana大神 第一种加载html文件 再webview的加载完成的代理方法中添加一下代码 //禁止长按弹出图片的地址等 [self.webView stringByEvaluatingJavaScriptFromString:@"document.body.style.webkitTouchCallout='none';"]; //禁止长按复制 [self.webView strin

解决httpclient因为保持永久长连接造成连接吊死的问题

httpclient使用了连接池,如果没有设置keep-alive策略,PoolingHttpClientConnectionManager会默认使用永久连接. 最近在调用京东api时,发现一个请求开始是可以获取到数据的,但隔了两分钟后再请求就会出现read timeout异常.对比请求成功和请求失败的日志后发现,请求成功的有以下日志“Connection: keep-alive”,“Connection can be kept alive indefinitely”:但请求失败的却打印“Shu