我需要一些具有已定义窗口大小的 php 代码,如果大小为 true,则如果不重定向到另一个页面,则运行该页面。我将使用 iframe 管理窗口大小。用php可以吗?如果不是还有其他方法。
问问题
261 次
2 回答
0
于 2013-08-01T15:53:19.243 回答
0
这是一个小 javacript,它检查宽度和高度,然后设置文档位置,如果它不是你指定的,但它是从 php 中回显的。您可以使用 maxheight、max width 和 url 变量。
<?php
$jssnippet = "<script type='text/javascript'>var width = window.innerWidth;
var height= window.innerHeight;
var maxheight=480;
var maxwidth=360;
var redirecturl='http://www.xl21.org';
if((width>maxwidth) && (height>maxheight)){document.location=url; }</script>";
echo $jssnippet;
?>
于 2013-08-01T16:08:58.403 回答