taphold event
添加的版本:1.0
说明:在持续的完整触摸事件后触发。
jQuery( ".selector" ).on( "taphold", function( event ) { ... } )
jQuery Mobile taphold
事件在持续的完整触摸事件(也称为长按)后触发。
$.event.special.tap.tapholdThreshold
(默认值:750) - 此值指示用户在目标元素上触发 taphold 事件之前必须按住他们的点击多长时间。
$.event.special.tap.emitTapOnTaphold
(默认值:true)-该值指示是否将与点击事件一起发出点击事件。
这个插件扩展了 jQuery 的内置方法。如果没有加载 jQuery Mobile,调用 .taphold()
方法可能不会直接失败,因为该方法仍然存在。但是,不会发生预期的行为。
例子:
一个简单的例子,一个捕获和作用于一个点击事件的例子
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>taphold demo</title>
<link rel="stylesheet" href="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.css">
<script src="//code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="//code.jquery.com/mobile/1.5.0-alpha.1/jquery.mobile-1.5.0-alpha.1.min.js"></script>
<style>
html, body { padding: 0; margin: 0; }
html, .ui-mobile, .ui-mobile body {
height: 85px;
}
.ui-mobile, .ui-mobile .ui-page {
min-height: 85px;
}
#nav {
font-size: 200%;
width:17.1875em;
margin:17px auto 0 auto;
}
#nav a {
color: #777;
border: 2px solid #777;
background-color: #ccc;
padding: 0.2em 0.6em;
text-decoration: none;
float: left;
margin-right: 0.3em;
}
#nav a:hover {
color: #999;
border-color: #999;
background: #eee;
}
#nav a.selected,
#nav a.selected:hover {
color: #0a0;
border-color: #0a0;
background: #afa;
}
div.box {
width: 3em;
height: 3em;
background-color: #108040;
}
div.box.taphold {
background-color: #7ACEF4;
}
</style>
</head>
<body>
<h3>Long press the square for 750 milliseconds to see the above code applied:</h3>
<div class="box"></div>
<script>
$(function(){
$( "div.box" ).bind( "taphold", tapholdHandler );
function tapholdHandler( event ){
$( event.target ).addClass( "taphold" );
}
});
</script>
</body>
</html>
演示:
相关用法
- JQuery Mobile tap用法及代码示例
- JQuery trigger()用法及代码示例
- JQuery toArray()用法及代码示例
- JQuery type()用法及代码示例
- JQuery triggerHandler()用法及代码示例
- JQuery toggle()用法及代码示例
- JQuery toggleClass()用法及代码示例
- JQuery text()用法及代码示例
- JQuery Mobile throttledresize用法及代码示例
- JQuery trim()用法及代码示例
- JQuery Mobile Popup initSelector用法及代码示例
- JQuery Mobile Collapsibleset disabled用法及代码示例
- JQuery UI Datepicker prevText用法及代码示例
- JQuery ajaxError()用法及代码示例
- JQuery Mobile Selectmenu defaults用法及代码示例
- JQuery UI Tabs event用法及代码示例
- JQuery UI Selectable appendTo用法及代码示例
- JQuery UI :focusable Selector用法及代码示例
- JQuery UI Selectmenu disabled用法及代码示例
- JQuery UI Button classes用法及代码示例
- JQuery .jquery用法及代码示例
- JQuery .scroll()用法及代码示例
- JQuery UI Draggable snapMode用法及代码示例
- JQuery each()用法及代码示例
- JQuery Mobile Toolbar hide用法及代码示例
注:本文由纯净天空筛选整理自jquerymobile.com大神的英文原创作品 taphold。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。