我一直在开发一些应用程序,我需要将Google Map放在我的网站上。我使用这段代码制作了它:
<?php
echo "<iframe width='425' height='350' frameborder='0' scrolling='no' marginheight='0' marginwidth='0' src='http://maps.google.ru/maps?hl=ru&ie=UTF8&ll=55.354135,40.297852&spn=27.388971,86.572266&t=h&z=4&output=embed'></iframe><br /><small><a href='http://maps.google.ru/maps?hl=ru&ie=UTF8&ll=55.354135,40.297852&spn=27.388971,86.572266&t=h&z=4&source=embed' style='color:#0000FF;text-align:left'>Show map increased</a></small>";
echo "<form method='POST'><input type='text' /><input type='submit' /></form>";
?>
你可以看到我也使用“形式”。这很重要,因为如果用户点击地图,那么表格上的标签应该显示点击的坐标。但我不懂Java Script。请告诉我,我该怎么做?谢谢。