好吧,我想出来了。
正如Jacob所指出的,它应该进入脚本,使数据名称显示为工具提示。
因此,我添加了以下内容:
if (jQuery(window).width() < 480) {
jQuery(this).removeAttr("href");
}
我的最终代码:
jQuery(document).on({
mouseenter: function(e) {
if (jQuery(window).width() < 480) {
jQuery(this).removeAttr("href");
}
setTimeoutConst = setTimeout(function() {
tooltip.open(e);
}, 200);
},
mouseleave: function(e) {
clearTimeout(setTimeoutConst);
tooltip.close(e);
}
}, \'a[data-name]\');