0

我有一个网站,一些用户在其中输入一些数据。地址是这些数据之一。我想得到这样的html。

<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/?ie=UTF8&amp;ll=37.0625,-95.677068&amp;spn=51.708931,101.425781&amp;t=m&amp;z=4&amp;output=embed"></iframe><br /><small><a href="https://maps.google.com/?ie=UTF8&amp;ll=37.0625,-95.677068&amp;spn=51.708931,101.425781&amp;t=m&amp;z=4&amp;source=embed" style="color:#0000FF;text-align:left">View Larger Map</a></small>

我想通过输入的地址进行一些网络请求,然后解析 html 并获取 html 进行嵌入。有更好的主意吗?

4

1 回答 1

1

对此有一个 JQuery 解决方案,即用户在文本框中输入地址,地址在地图中动态加载。

在此处尝试DEMO并在此处尝试CODE

$(document).ready(function(){
    var map = $('#map').acts_as_map_container();
    // params:
    // container is required
    // suggestion is the element which will contain the suggested address, default to #suggested
    // delay is the delay time for requesting google map api, default to 500ms
    var address = $('#address').acts_as_address({
        container: map,
        suggestion: '#suggestion',
        delay : 500
    });

})
于 2012-12-06T18:02:20.750 回答