弹出全屏窗口:
function ow()
{
//用tmp保存新弹出的窗口
//fullscreen=1表示弹出全屏窗口
var tmp=window.open("about:blank","","fullscreen=1");
}
弹出非全屏幕自定义窗口:
function ow()
{
//用tmp保存新弹出的窗口
var tmp=window.open("about:blank","","fullscreen=0");
//移动到屏幕左上角
tmp.moveTo(50,50);
//创新设置大小
tmp.resizeTo(screen.width-20,screen.height);
//给新弹出的窗口设置焦点
tmp.focus();
//转向传入的函数
tmp.location=edit.aspx;
}
js 弹出全屏幕窗口
原创
©著作权归作者所有:来自51CTO博客作者我是艾伦的原创作品,请联系作者获取转载授权,否则将追究法律责任
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
CSS铺满屏幕
1.设置成绝对定位2.高度是height:100vh3.宽度是width:100vw注意注意注意【vh和vw不要搞错了】!!!
css css3 前端 html 绝对定位 -
el-aside无法铺满屏幕
第一步:在App.vue中写入样式<style scoped>#app { position: absolut
vue.js javascript elementui ide App -
android surfaceview如何铺满屏幕
Android 5.0 SurfaceView ,GLSurfaceView,SurfaceTexture,TextureView全面对比详解; SurfaceView, GLSurfaceView, SurfaceTexture和TextureView是Android当中名字比较绕,关系又比较密切的几个类。本文基于Android 5.0(Lollipop
Surface SurfaceView GLSurfaceView SurfaceTexture TextureView