我正在使用jQuery和qTip2使图像地图上的地理信息可见。您可以在 JSFiddle |上查看演示。小提琴屏幕结果
在桌面浏览器上一切正常。悬停时您会看到工具提示,单击时您会转到标签定义的URL 。href
但在移动 safari (ipad/iphone) 上,无法获取到 URL 的链接。每次单击地图时,就像您将鼠标悬停在电脑上一样,但绝不会单击。
该图像是使用标准 html 创建的:
<img src="http://i.stack.imgur.com/6z2Z9.png" usemap="mapname">
该地图也是使用标准 html 创建的,但带有附加属性工具提示(1):
<map name="mapname">
<area shape="poly" href="?content=meteo&abm=ALL" tooltip="ABM Alland" coords="664,243, 662,240, 664,237, 667,235, 669,232, 671,229, 671,225, 669,222, 669,214, 672,213, 673,227, 676,228, 679,231, 685,231, 692,232, 695,231, 697,228, 700,227, 703,228, 704,234, 705,241, 703,244, 700,246, 697,247, 694,249, 691,251, 688,253, 683,254, 680,253, 677,252, 672,249, 669,247, 664,243"></map>
带有(2)的 jQuery 非常小:
$(document).ready(function() {
$('area').each(function() {
$(this).qtip({
content: { text: $(this).attr('tooltip') },
position: {
my: 'bottom left',
target: 'mouse',
viewport: $(window)
},
hide: { fixed: true },
style: { classes: 'ui-tooltip-tipsy ui-tooltip-shadow'}
});
});
});
那么我该如何解决这个问题呢?
(1)我知道这个属性应该是 data-tooltip。这将很快改变。
(2)基于imagemap demo