我正在(再次)为寻找可行的解决方案而苦苦挣扎。我想制作一个带有链接的标签,该链接仅在第二次单击后才能起作用。因为第一次它会显示一些文本,而下次它将去该页面。它在手机上。所以更难了...
到目前为止,我已经看过这段代码了,但是没有用。也许有人对此问题有解决方案?预先感谢!
$('.text_entry').on('touchstart click', function (event) {
var href = $(this).attr('href');
var inputHref = $( "input" ).attr( "title" );
console.log(href);
$("a").removeAttr("href");
console.log(href)
$("a").removeAttr("target");
console.log(href)
//event.preventDefault();
if($(this).hasClass('show-entry')){
console.log(href)
$("a").attr("href", href);
//window.location.href=href;
}else{
console.log(href)
// $(this).addClass('show-entry');
}
});
制作一个console.log以查看为什么它不起作用。因为第二次单击它,变量消失了。...