我有一个包含iframe谷歌地图的新窗口,该窗口可以使用window.open()方法打开。我想要距iframe地图的距离(km)值吗?
我尝试使用popUpWindow.document.getElementById('map')。value。但是它安慰它是不确定的。
HTML。
<iframe id="map" src=""> </iframe>
iframe的src是带有起点和终点的google maps api。
JS。
var map = popUpWindow.document.getElementById('map').value;
console.log('map',map);
我想要iframe Google地图中的值。
注意:iframe位于新窗口(子窗口)中。