这个问题对我来说似乎很奇怪,我似乎无法解决它。我有一个简单的 HTML 表单;在里面,我确实有一个文本框和一个按钮,如下所示:
<form id="form1" method="get"> <!-- Note: No Action property -->
<div>
<h1>
Simple Test Form</h1>
<table border="0" width="400">
<tr>
<td align="right">
All of these words
</td>
<td>
<input name="txtAll" id="txtAll" type="text" value="testing keyword" />
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="Submit" value="Submit" onclick="myJS(this);" />
</td>
</tr>
</table>
</div>
</form>
MyJS 文件如下:
<script type="text/javascript">
function myJS(which) {
var CONSTANT_SITE_TARGET = "http://servername/redirect/target.aspx?text=";
//capture all values from the form
var allWords = document.getElementById("txtAll").value;
var morestring = ""; //More data manipulation here.....
var url = CONSTANT_SITE_TARGET + allWords + morestring;
window.open(url);
//window.location = url; //Doesn't work
//window.location.href = url; //Doesn't work
//self.location = url; //Doesn't work
//top.location = url; //Doesn't work
}
</script>
如您所见,它不会重定向到 javascript 中的指定 URL。当我使用 window.open 时,它可以工作。请注意,在 <form...> 标记中,我没有将action属性放入其中。我不想打开新浏览器,只需重定向到同一浏览器中的新网址。
有没有办法重定向它?