open()和showModalDialog()用法

一、showModalDialog()
var value = window.showModalDialog("页面","title","scrollbarss=no;resizable=no;help=no;status=no;dialogTop=数字;dialogLeft=数字;dialogHeight=350px;dialogWidth=410px;");
有一个返回值可用,value值来自于Modal页面关闭前returnValue赋值

二、open()
window.open("页面","","height=100,width=400,toobar=no,menubar=no,scrollbars=no,resizable=no,location=no,status=no,top=100,left=300");
没有一个直接可用的返回值,但是可在子窗口中使用opener属性来操作父窗口

你可能感兴趣的:(showModalDialog)