怎么打开一个没有地址栏的firefox新窗口?
求助。谢谢。
另外,maxthon呢?
------解决方案-------------------- <script language= "javascript ">
open( "part ", "name ",location= "no ")
</script>
part : 要打开的文件路径,
name : 打开窗口的名字
------解决方案-------------------- <input type= "button " onclick= "window.open( 'http://www.csdn.net ', 'v ', 'status=no,toolbar=no '); " value= "open " />
------解决方案--------------------function popnew(url,title,width,height){
var w = 1024;
var h = 768;
if (document.all || document.layers){
w = screen.availWidth;
h = screen.availHeight;
}
var leftPos = (w/2-width/2);
var topPos = (h/2.3-height/2.3);
window.open(url,title, "width= "+width+ ",height= "+height+ ",top= "+topPos+ ",left= "+leftPos+ ",scrollbars=no,resizable=no,status=no,location=no ")
}
ff 和max是一样的
------解决方案--------------------window.open( "name ",location= "no ")