js判定浏览器是否全屏 10
window.onresize=function(){if(window.outerHeigth==screen.heigth||window.outerWidth==s...
window.onresize = function (){
if(window.outerHeigth==screen.heigth || window.outerWidth==screen.width){
$("#datagrid").css("height","94%");
alert("全屏");
}
else{
$("#datagrid").css("height","93%");
alert("不全屏");
}
}
这代码 当按F11全屏的时候走if 但是退出全屏的时候还是走if 不知道为什么不走else 我用的是谷歌浏览器... 求各位大神帮帮忙... 就是10点财富了... 谢谢各位了. 展开
if(window.outerHeigth==screen.heigth || window.outerWidth==screen.width){
$("#datagrid").css("height","94%");
alert("全屏");
}
else{
$("#datagrid").css("height","93%");
alert("不全屏");
}
}
这代码 当按F11全屏的时候走if 但是退出全屏的时候还是走if 不知道为什么不走else 我用的是谷歌浏览器... 求各位大神帮帮忙... 就是10点财富了... 谢谢各位了. 展开
2016-02-01 · 知道合伙人互联网行家
关注
展开全部
//设置浏览器全屏
function f_SetFullScreen() {
//如果浏览器不是全屏则将其设置为全屏模式
if (!f_IsFullScreen()) {
var wsShell = new ActiveXObject('WScript.Shell');
wsShell.SendKeys('{F11}');
return false;
}
}
//判断浏览器是否全屏
function f_IsFullScreen() {
return (document.body.scrollHeight == window.screen.height && document.body.scrollWidth == window.screen.width);
}
function f_SetFullScreen() {
//如果浏览器不是全屏则将其设置为全屏模式
if (!f_IsFullScreen()) {
var wsShell = new ActiveXObject('WScript.Shell');
wsShell.SendKeys('{F11}');
return false;
}
}
//判断浏览器是否全屏
function f_IsFullScreen() {
return (document.body.scrollHeight == window.screen.height && document.body.scrollWidth == window.screen.width);
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |