10

我正在执行 PHP if/else 语句。

但是,我希望代码执行以下操作:

<?php 

    if ($condition == true){ 
       echo 'ITS TRUE!'; 
    }else { 
       #id-element.css('display':'none'); 
    } 

?>

请注意,ELSE 语句执行的 jQuery 行会更改所涉及元素的 css 样式。

我该怎么做呢?

任何人都对我如何实现 PHP if/else 并在 PHP if/else 语句中使用 jQuery 更改 css 样式有任何建议/示例?

4

2 回答 2

32

您可以回显样式元素的 HTML 并将 CSS 放入其中。

else {
    echo '<style type="text/css">
        #id-element {
            display: none;
        }
        </style>';
}
于 2013-01-13T13:10:56.240 回答
5

估计你可以做这样的事情:

<?php
    if ($condition == true): 
         echo 'ITS TRUE!'; 
    else: 
?> 
    //put whatever html/style/script you want here, for example
    <script>
        $( '#id-element' ).css('display', 'none');
    </script>
<?php endif; ?>
于 2013-01-13T13:12:19.310 回答