我有 2 个输入字段以及 Map div,这里当我切换时,选项卡焦点将从第一个输入字段转到地图内的名称和链接,在传递到所有地图名称后,它到达第二个输入字段。我尝试在地图函数内将 tabindex 设置为 -1,但没有任何效果。
任何人都可以帮助我,如何使这项工作有效。
TS:
var map = new window["google"].maps.Map(this.gmapElement.nativeElement, {
center: { lat: 37.1587963, lng: -100.5623315 },
zoom: 2
});
google.maps.event.addListener(map, "titlesLoaded", function() {
[].slice.apply(this.gmapElement.nativeElement).forEach(function(item) {
item.setAttribute("tabindex", "-1");
});
HTML:
<div class="col" >
<a href="javascript:void(0);" tabindex="-1">View on Map</a>
<div style="position: relative; overflow: hidden;width:100%;height:400px" #mapRef>
</div>
当年话下
相关分类