PHP源码里面插入JS代码怎么没显示?

JavaScript034

PHP源码里面插入JS代码怎么没显示?,第1张

js代码是写在html代码中

要在php中写js代码要用echo "<script language='JavaScript' type="text/javascript">alert('hello!')</script>"

php中是不能执行js的,js只能在php解析成html后才能执行。如果想用php输出js 就要把js代码当作php的字符串来输出。

举例:

<?php

$alert  = alert(1)

echo "<script type=\"text/javascript\">".$alert."</script>"

?>

上面的代码解析成html 就会变成正常的js了。

<script type="text/javascript">alert(1)</script>

你可以去后盾人平台看看,里面的东西不错