How can we use javascript to new window, but we need post instead of get.
myWindow=new window("http://www.yahoo.com");
it pops up a windown and goes to www.yahoo.com.
but how can we use post instead of get like a form post
myWindown=new window("http://myserver/myservlet?a=b...");
c***r 发帖数: 4631
2
target="new"
no good in html4.01 strict and xhtml
【在 y*****g 的大作中提到】 : How can we use javascript to new window, but we need post instead of get. : myWindow=new window("http://www.yahoo.com"); : it pops up a windown and goes to www.yahoo.com. : but how can we use post instead of get like a form post : myWindown=new window("http://myserver/myservlet?a=b...");