更新代码
<div>
<button type="button" class="submit btn btn-default" id="btnSubmit">Submit
</button>
<button type="button">Cancel</button>
</div>
<script>
$("#btnSubmit").click(function(e)
{
e.preventDefault();
//btn Click validation and code submission goes here..
alert("Form has been successfully submitted");
window.open("http://....../viewmyrequest.aspx","_self");
}
</script>
window.location.href 仅在调试模式下工作,如果我关闭调试模式,则不会重定向到其他窗口。
我已经使用相同主题探索了许多StackOverflow问题,但我对此问题没有得到任何可靠的回应。
window.location.href = "http://testwebsite.com/viewtickets.aspx"
我也尝试过其他选择
window.location = "http://testwebsite.com/viewtickets.aspx"
window.location.replace = "http://testwebsite.com/viewtickets.aspx"
答案 0 :(得分:0)
试试这个。在我的所有网站中跨浏览器工作。
loc = "http://testwebsite.com/viewtickets.aspx";
window.open(loc,'_self');
EDITED: 这对你来说可能更好..
<script>
function setURL(url){
document.getElementById('iframe').src = url;
}
</script>
<iframe id="iframe" src="idreesinc.com/research.html" />
<input type="button" onclick="setURL('URLHere')" />
它会将正确的网址插入iframe。
答案 1 :(得分:0)
我99%肯定问题是您使用的是提交按钮,而且提交的表单不允许您运行JavaScript。因此,您需要将类型设置为按钮而不是提交按钮,或者您需要取消单击操作。
<button type="button" ... >
或
<button onclick="foo(); return false;" ... >