寻求一个 手机端的 js 长按一个div 3秒 然后进行页面跳转。
1个回答
展开全部
<!DOCTYPE HTML>
<html>
<head>
<title>鼠标长按事件</title>
<script>
var num = 0 ;
function whichElement(e){
var timer_alert = setTimeout(function() {
if(e.which==1) {
num++
if(num==2){
num=0;
window.location.href='http://www.163.com';
}else{
whichElement( e );
}
}
}, 3000) ;
}
</script>
</head>
<body>
<div style="border:1px solid #E0E0E0;width:150px;height:150px;" onmousedown="whichElement(event)">
</div>
</body>
</html>
<html>
<head>
<title>鼠标长按事件</title>
<script>
var num = 0 ;
function whichElement(e){
var timer_alert = setTimeout(function() {
if(e.which==1) {
num++
if(num==2){
num=0;
window.location.href='http://www.163.com';
}else{
whichElement( e );
}
}
}, 3000) ;
}
</script>
</head>
<body>
<div style="border:1px solid #E0E0E0;width:150px;height:150px;" onmousedown="whichElement(event)">
</div>
</body>
</html>
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询