window.open在Chrome和IE中的行为有所不同

时间:2016-01-15 09:27:50

标签: javascript asp.net google-chrome internet-explorer

假设我有以下文件层次结构 -

 / ProjectRoot
  / ChildFolder1
  / ChildFolder2
     - Child2_page1.aspx
     - Child2_page2.aspx

我现在在页面 Child2_page1.aspx ,我有以下代码

var url = "Child2_page2.aspx";
window.open(url);

在IE中,将调用http://projectroot/childfolder2/child2_page2.aspx

然而,

在Chrome中,系统会调用http://projectroot/child2_page2.aspx

他们为什么表现不一样?

有没有让Chrome的行为像IE而不更改网址?更改URL将对我的应用程序产生重大影响:(

0 个答案:

没有答案