Table of Contents
回复内容:
Home Backend Development PHP Tutorial javascript - JS获得screensize变量怎么传给PHP以调用不同图片?

javascript - JS获得screensize变量怎么传给PHP以调用不同图片?

Jun 06, 2016 pm 08:08 PM
javascript php

网站想做成自适应的,php会自动生成的不同尺寸的摘要缩略图,但是php没办法获取用户屏幕尺寸,只能靠js来获取,js获取后传进php的数据是string类型,用(int) intval()都无法转换成整数,无法做数值比较,求解~!

<code><script type="text/javascript">
    var sw = document.body.clientWidth;
</script>
<?php $sw = "<script type=text/javascript>document.write(sw)";
$sw_int = (int)$sw;
if ($sw_int &gt; 1600) {
    //调用1600宽的图片
} elseif ($sw_int &gt; 1000) {
    //调用1000宽的图片
} else {
    //调用800宽的图片
}
?&gt;</code>
Copy after login
Copy after login

回复内容:

网站想做成自适应的,php会自动生成的不同尺寸的摘要缩略图,但是php没办法获取用户屏幕尺寸,只能靠js来获取,js获取后传进php的数据是string类型,用(int) intval()都无法转换成整数,无法做数值比较,求解~!

<code><script type="text/javascript">
    var sw = document.body.clientWidth;
</script>
<?php $sw = "<script type=text/javascript>document.write(sw)";
$sw_int = (int)$sw;
if ($sw_int &gt; 1600) {
    //调用1600宽的图片
} elseif ($sw_int &gt; 1000) {
    //调用1000宽的图片
} else {
    //调用800宽的图片
}
?&gt;</code>
Copy after login
Copy after login

这个通常不这样做,php生成不同尺寸的缩略图目的就是静态化,而且缩略图名称应该是规则的,比如image_0153431242_small.jpg, image_0153431242_middle.jpg, image_0153431242_big.jpg, image_0153431242_source.jpg这样
因此前端js只要调整javascript - JS获得screensize变量怎么传给PHP以调用不同图片?就好了,而不是传递给php处理,例如
javascript - JS获得screensize变量怎么传给PHP以调用不同图片?
这种格式不容易处理浏览器端缓存,影响页面二次打开的速度。

另外,你可能不明白php工作原理。对于php来说,js只是被php处理并输出的字符串,即js代码执行的时候php进程早就关闭了。php在服务器端运行,js在浏览器端运行,两者不能随时交互。

自己百度一下srcset这个标签,张鑫旭有几篇讲这个的

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot Article Tags

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

CakePHP Date and Time

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

CakePHP Project Configuration

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

CakePHP File upload

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

CakePHP Routing

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

Discuss CakePHP

CakePHP Quick Guide CakePHP Quick Guide Sep 10, 2024 pm 05:27 PM

CakePHP Quick Guide

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

How To Set Up Visual Studio Code (VS Code) for PHP Development

See all articles