php中输出js语句

如何在php中输出js语句?

示例

php<?php
$classState="";

if($state==0){
$classState="已下课";
}
else{
$classState="正在上课";
}

echo "<script  type='text/javascript'>
function getState(){            
        var cs = ".$state.";
        return cs;
} 
</script>";

?>

如许在页面的其他地方,就能够直接援用php中输出的js要领了.

    原文作者:Blue_Moon
    原文地址: https://segmentfault.com/a/1190000002641224
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞