使用Internet Explorer打开HTML文件

时间:2014-10-02 10:51:38

标签: javascript html google-maps internet-explorer

大家早上好,

我正在尝试使用Internet Explorer打开一个HTML文件(请不要介意版本,我已经尝试过所有版本)。

该HTML文件使用javascript代码在div中创建Google Map,但每次尝试使用Internet Explorer打开它时,浏览器都会显示以下消息:

“Internet Explorer已阻止此页面运行可访问您计算机的脚本或ActiveX控件。”

我已经尝试更改安全和隐私选项,但邮件仍在显示。

这是我现在正在使用的javascript代码:

<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=false"></script>
<script>
    var directionsDisplay;
    var directionsService = new google.maps.DirectionsService();

    function initialize() {
      directionsDisplay = new google.maps.DirectionsRenderer();
      var mapOptions = {
        zoom: 12,
        center: new google.maps.LatLng(40.4889323, -3.6927295),
        mapTypeId: google.maps.MapTypeId.ROADMAP
      };
      var map = new google.maps.Map(document.getElementById('map-canvas'),
          mapOptions);
      directionsDisplay.setMap(map);
      calcRoute();

    }

    function calcRoute() {
      var start = new google.maps.LatLng(40.4889323, -3.6927295);
      var end = new google.maps.LatLng(40.5485301,-3.648655);
      var request = {
        origin: start,
        destination: end,
        waypoints: [
                    {
                        location: new google.maps.LatLng(40.662707,-3.771187),
                        stopover: true
                    }
                    ],
        travelMode: google.maps.TravelMode.DRIVING
      };
      directionsService.route(request, function(response, status) {
        if (status == google.maps.DirectionsStatus.OK) {
          directionsDisplay.setDirections(response);
        }
      });
    }

    google.maps.event.addDomListener(window, 'load', initialize);

</script>

如果有人可以帮助我或给我一些建议,我将非常感激。

非常感谢你。

1 个答案:

答案 0 :(得分:0)

当您从计算机打开HTML文件而不是浏览网页时,这是Internet Explorer的正常行为。

在本地打开文件时,默认情况下会禁用脚本。可以在配置中更改此设置,但不建议这样做。你只需点击&#34;允许&#34;按钮,页面将正常运行。

在Web服务器上发布文件后,IE浏览时不会禁用脚本。

如果您对按钮感到厌倦,可以添加一个&#34; Mark Of the Web&#34;在测试时,这将允许脚本在没有警告的情况下运行:

<!-- saved from url=(0021)http://www.google.com -->

在将页面发布到网页之前,您应该自然地删除它。