Home  >  Article  >  Backend Development  >  How to modify css properties in php?

How to modify css properties in php?

coldplay.xixi
coldplay.xixiOriginal
2020-07-22 12:00:593905browse

php method to modify css attributes: first output the PHP variable to the corresponding file; then use a global javascript variable to save the value of the variable; finally, search in the Jquery code and you will be able to read this variable.

How to modify css properties in php?

php method to modify css attributes:

In the PHP code, set the following variables:

<?php
$state = &#39;block&#39;;?><html>
    <script>
        var state = "<?=$state?>";
    </script></html>

Basically, you output a PHP variable to your file and then use a global javascript variable to save the value of that variable. In your Jquery code, you will be able to read this variable.

i Using a more modular version in my framework, my rendering engine is able to control which CSS or JS files are loaded. There is also a global javascript object generated by my script which contains all the global data like the base URL, Server time zone, sync data, etc., this data will be reused in all client scripts.

Hope this helps.

UPDATE:

Here's how it works:

// In your html file 
<script>var a = &#39;<?=$state?>&#39;;</script> <-- set the global var here
<script src="js/bar.js"></script>       <-- include your scripts after the global one
--------------------------------------------------------
// In your bar.js file 
alert(a)  // should show the contents of $state stored in the global var a

Related learning recommendations: PHP programming from entry to proficiency

The above is the detailed content of How to modify css properties in php?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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

Related articles

See more