0

我正在使用谷歌页面建立一个网站,但遇到了一个我不明白的问题。我在登录表单上使用 window.open 来使用谷歌地图打开一个新窗口。提交按钮打开一个对话框,询问我是否要下载或保存文件。我点击打开,它确实按预期打开了页面。但该文件是我 C 盘上的下载文件。如何消除对话框并让 html 代码自动呈现。这是浏览器问题还是编码问题?有一些我不明白的网络问题正在发生,对于经验丰富的网络程序员来说可能非常明显。我会感激所有的想法和想法。

谢谢

window.open 代码如下所示:

window.open('https://sites.google.com/site/mywebsite/mykmlfiles   
/agserver2.htm','_blank');  

agserver2.htm 如下所示:

<?xml version="1.0" encoding="UTF-8" ?> 
<Module>
  <ModulePrefs title="MAP" /> 
  <Content type="html">

<![CDATA[

<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no">
<meta http-equiv="content-type" content="text/HTML; charset=UTF-8">

<title>AgServer</title>
<link href="http://code.google.com/apis/maps/documentation/javascript/examples   
/default.css" rel="stylesheet" type="text/css">
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false& 
libraries=visualization"></script>
<script LANGUAGE="JavaScript" type="text/javascript">

var map;
var layers = [];

function initialize() {
  var montana = new google.maps.LatLng(46.0, -110.0);
  var myOptions = {
    zoom: 11,
    center: montana,
    mapTypeId: google.maps.MapTypeId.ROADMAP
  }

  map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

  layers[0] = new google.maps.KmlLayer('https://sites.google.com/site/mywebsite
  /mykmlfiles/soils.kml', {preserveViewport:true});

  layers[0].setMap(map);
}

function togglelayer(i) {
   if(layers[i].getMap() === null) {
      layers[i].setMap(map);
   }
   else {
      layers[i].setMap(null);
   }

</script>
</head>

<body onload="initialize()">
   <div id ="toolbar" style="width: 100%; height:20px; text-align:center">
      <input type="button" value="Toggle Soils" onclick="togglelayer(0);"></input>
   </div>
   <div id="map_canvas" style="top:30px;"></div>
</body>
]]>
  </Content> 
</Module> 
4

1 回答 1

0

如果您只是想重定向,请使用 window.location("put address here")

于 2013-01-08T01:50:38.307 回答