我正在尝试使用javascript在链接上执行触摸事件。 触发点击事件时遇到问题。 我试图在那上面执行点击事件,但那根本不起作用。 这是我要点击的链接代码。
$('#next_button,#bottom_next_button,#next_arrow,.image_inner_a').on('touchstart',function(e){
if(e.touches&&e.touches[0].pageX>5){
this.href=this.href.replace(/[&?]z=[^&]*/,'');valid_user=true;
}
});
$('#next_button,#bottom_next_button,#next_arrow,.image_inner_a').click(function(e){
e.preventDefault();
next_ajax();
return false;
});
$('#prev_arrow,#prev_button').click(function(e){
prev_ajax();
e.preventDefault();
return false;
});
window.onpopstate=function(event){
if(pop_state){
pop_state=0;return;
}
我正在分析这个网站,所以我试图通过javascript触摸按钮。 我想触摸ID #next_button