javascript的问题(100分)

  • 主题发起人 主题发起人 creazyboy
  • 开始时间 开始时间
C

creazyboy

Unregistered / Unconfirmed
GUEST, unregistred user!
请问我怎么能在原来的窗口里打开一个新的html或者asp文档?
 
openwindow
z指定窗口名字啊!
还可以下载控件嘛!
 
window.open(url,options)
please look up MSDN library for detail informations.
in the MSDN library's Index tab, type 'window element' adn you will get to the page you desired.
 
To 楼上:
window.open 不行,他是在一个新的窗口里打开,我想在原窗口里打开

go on!
 
指定location.href=新的链接,即可,还要啥?
 
window.locate(...)
or
window.navigate(...)
 
window.document.form.action="filename";
window.document.form.submit();
 
then
u should use window.location="newURL".
please remember you can find everything u want about IE in MSDN.
the syntax is at the same page of my last comment.
 
多人接受答案了。
 
不发外部请求用javascript打开当前网页的新窗口
http://www.delphibbs.com/delphibbs/dispq.asp?lid=625139
 
后退
顶部