<script Language="javascript"> function 页面名称(WINwidth, WINheight) { showx = event.screenX - event.offsetX - 4 - WINwidth ; // + deltaX; showy = event.screenY - event.offsetY + 18; // + deltaY; newWINwidth = WINwidth + 4 + 18; var features = 'dialogWidth:' + newWINwidth + 'px;' + 'dialogHeight:' + WINheight + 'px;' + 'dialogLeft:' + showx + 'px;' + 'dialogTop:' + showy + 'px;' + 'directories:no; localtion:no; menubar:no; status=no; toolbar=no;scrollbars:no;Resizeable=no'; var endtarget = "弹出页面.htm"; // window.open(endtarget, '', ''); window.showModalDialog(endtarget, " ", features); } </script> |