jq有两个层绑定了touchstart,怎样在运行第一个的时候拒绝第二个运行
如下$("body").on("touchstart",function(e){$(this).on("touchmove",function(e){})}).on("t...
如下
$("body").on("touchstart", function(e) {$(this).on("touchmove", function(e) {})}).on("touchend", function() {$(this).off("touchmove");});
$(".slideBox").on("touchstart", function(e) {$(this).on("touchmove", function(e) {})}).on("touchend", function() {$(this).off("touchmove");});
在拖动slideBox的时候,绑定body的滑动事件也会运行,怎样设置优先级,让slideBox滑动时,禁止执行body的滑动事件呢? 展开
$("body").on("touchstart", function(e) {$(this).on("touchmove", function(e) {})}).on("touchend", function() {$(this).off("touchmove");});
$(".slideBox").on("touchstart", function(e) {$(this).on("touchmove", function(e) {})}).on("touchend", function() {$(this).off("touchmove");});
在拖动slideBox的时候,绑定body的滑动事件也会运行,怎样设置优先级,让slideBox滑动时,禁止执行body的滑动事件呢? 展开
2个回答
展开全部
<html>
<head>
<script type="text/javascript" src="jquery-1.8.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//button单击事件
$(":button").click(function(){
//判断是否为第一个button点击,如果是就隐藏第二个按钮
if($(":button").index(this)==0){
$(":button").eq(1).hide();
}
});
});
</script>
</head>
<body>
<input type="button" value="1" />
<input type="button" value="2" />
</body>
</html>
<head>
<script type="text/javascript" src="jquery-1.8.1.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
//button单击事件
$(":button").click(function(){
//判断是否为第一个button点击,如果是就隐藏第二个按钮
if($(":button").index(this)==0){
$(":button").eq(1).hide();
}
});
});
</script>
</head>
<body>
<input type="button" value="1" />
<input type="button" value="2" />
</body>
</html>
追问
移动端的touchMove,我已经解决了,你这个跟我的问题没有关系,不过还是谢谢
移动端的touchMove,我已经解决了,你这个跟我的问题没有关系,不过还是谢谢
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2020-04-08
展开全部
怎么解决的
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询