我正在使用谷歌网页建立一个网站,我遇到了一个我不明白的问题。我在登录表单上使用window.open来使用谷歌地图打开一个新窗口。提交按钮会打开一个对话框,询问我是否要下载或保存文件。我点击打开它确实按预期显示页面。但该文件是我的驱动器上的下载文件。如何消除对话框并自动呈现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>
答案 0 :(得分:0)
如果您只想重定向,请使用window.location(“put address here”)