关于window.open()的小问题
我的工程结构简述如下:
工程文件夹:
Main.aspx(框架:分tree和hello)
Login.aspx
tree.aspx
Hello.aspx
文档文件夹:
File.aspx
现在我要从File.aspx页面跳转到tree.aspx页面(tree.aspx在框架tree里File.aspx在框架hello里)我该怎么做?我用window.open( "tree.aspx ", "tree ", " ")是不行的,因为它指向的URL是localhost/工程/文档文件夹/tree.aspx.也就是说只能在同一文件夹下的页面键跳转,我想实现这个功能该怎么做,或是有什么好的解决办法没?谢谢
------解决方案--------------------window.open( "../tree.aspx ", "tree ", " ")