admin管理员组

文章数量:1344319

really annoying me now,

I've stripped my code down to this

$(function(){
  if ( ("standalone" in window.navigator) && !window.navigator.standalone ) {
    alert('full screen');
  }
});

yet every time I run this on my ipad FROM safari it kicks out the alert.

I've no idea why and its causing chaos to my whole uni project which is due monday! Any help would be amazing.

really annoying me now,

I've stripped my code down to this

$(function(){
  if ( ("standalone" in window.navigator) && !window.navigator.standalone ) {
    alert('full screen');
  }
});

yet every time I run this on my ipad FROM safari it kicks out the alert.

I've no idea why and its causing chaos to my whole uni project which is due monday! Any help would be amazing.

Share Improve this question edited May 17, 2012 at 16:42 Sampson 269k76 gold badges545 silver badges568 bronze badges asked May 17, 2012 at 16:41 owenmelbzowenmelbz 6,58418 gold badges69 silver badges121 bronze badges 2
  • 1 gah, I had different code before, without the ! and saw someone said this above code was more reliable. so i just swapped it out without noticing the ! thanks. – owenmelbz Commented May 17, 2012 at 16:50
  • 2 You should post that as an answer and accept it so that your question doesn't appear in the unanswered tab. – Alexandre Khoury Commented Jun 30, 2012 at 14:49
Add a ment  | 

1 Answer 1

Reset to default 8

When/if the web page is in standard/usual Safari mode, the "window.navigator.standalone" value will be False. Only when the web page is in "app mode/i.e. full screen mode", this value will be True. NOTE: this JavaScript value does not exist in browsers that do not support "app mode/i.e. full screen mode". So you should test both for the very existence of the property window.navigator.standalone as well as for its truthfulness.

本文标签: web applicationsJavascript windownavigatorstandalone brokenStack Overflow