我使用javascript获得了屏幕宽度: -
<script type="text/javascript">var sw = document.body.scrollWidth ;</script>
然后我将宽度值存储在php变量中: -
$screenWidth1 = "<script>document.writeln(sw);</script>";
现在我想在这样的条件下使用$screenWidth1
: -
if ($screenWidth1 < '960') {echo "working";}
但它不起作用,当我们打印$screenWidth1
时,它显示正确的值,但条件是它不起作用。
如果有任何解决方案,请告诉我。