在我的项目中,我有以下脚本来打开页面:
<script type="text/javascript">
function setPage(pName) {
var iPage = "'" + pName + "'";
document.getElementById('iFrame').src = window.location.href(iPage);
}
</script>
当我运行程序时,它会给我以下有问题的URL:
Requested URL
http://localhost:7819/Pages/Account/'http:/localhost:7819/Pages/Support/Asp/Help01.aspx'
我们看到地址包含当前页面的网址和请求的网址
更多的是我在/
中丢失了第二个斜杠http:/
,我在剧本中一直都是这样。
我该如何解决这个问题?
答案 0 :(得分:1)
我认为,你想要这样的东西?
<script type="text/javascript">
function setPage(pName) {
document.getElementById('iFrame').src = pName;
}
</script>